#include using std::cout; using std::endl; #include "exampleClass.h" int main(int argc, char *argv[]) { ExampleClass alice("alice", 10.0, 20.0); cout << "Alice's weight: " << alice.getWeight() << endl; return 0; }