#include using namespace std; class Human { public: string Name; int Age; int Height; int studentID; void printName() { cout << Human.Name << endl; } }; int main(int argc, char* argv[]) { Human german; int j = 4; for (int i =1;i<4;i++) { cout << "Hello World!" << endl; cout << i << endl; } german.Name = "Bill"; german.printName(); return 0; }