5752115 [rkeene@sledge /home/rkeene/personal/school/comp-sci-ii/lab1]$ cat -n lab1.cpp
 1 #include "employee.h"
 2 
 3 void main()
 4 
 5 {
 6 
 7     Laborer laborer0;
 8     Foreman foreman1;
 9     Scientist sci0;
10 
11 
12 
13     cout << endl;
14     cout << "Enter data for a laborer" << endl;
15     laborer0.getData();
16     cout << "Enter data for a foreman" << endl;
17     foreman1.getData();
18     cout << "Enter data for a scientist" << endl;
19     sci0.getData();
20 
21 
22 
23     cout << "Output:" << endl;
24     cout << "Data on laborer:" << endl;
25     laborer0.putData();
26     cout << endl;
27     cout << "Data on foreman:" << endl;
28     foreman1.putData();
29     cout << endl;
30     cout << "Data on scientist:" << endl;
31     sci0.putData();
32 
33 }
5752116 [rkeene@sledge /home/rkeene/personal/school/comp-sci-ii/lab1]$

Click here to go back to the directory listing.
Click here to download this file.
last modified: 2002-08-29 03:27:33