/********************************************************************* C201 Computer Programming II Fall 2006 Dana Vrajitoru & Implementation of the class Human. **********************************************************************/ #include "human.h" #include using namespace std; int main() { Human socrates("Socrates", ""); socrates.Walk(); socrates.Walk(2); socrates.Animal::Walk(); if (socrates.Is_mortal()) { socrates.Output_name(); cout << " is mortal because any "; socrates.Lifeform::Output_name(); cout << " is mortal." << endl; } else cout << "Does not compute" << endl; return 0; }