Beispiel #1
0
int main()
{
    // Declare two employees
    Employee cAlex;
    cAlex.SetInfo("Alex", 1, 25.00);
 
    Employee cJoe;
    cJoe.SetInfo("Joe", 2, 22.25);
 
    // Print out the employee information
    cAlex.Print();
    cJoe.Print();
 
    return 0;
}