lesson 10 show emp cpp
[[lesson_10_show_emp_cpp]] last edit on
Aug 18, 2005
6:05 AM
by rescued_by_c
[user02@FC4 Lesson10]$ cat -n show_emp.cpp
[user02@FC4 Lesson10]$ ./show_emp
The employee is 32 years old
The employee makes $25000
[user02@FC4 Lesson10]$
1 #include <iostream>
2 using namespace std;
3
4 void show_employee(int age, float salary)
5 {
6 cout << "The employee is " << age << " years old" << endl;
7 cout << "The employee makes $" << salary << endl;
8 }
9
10 int main()
11 {
12 show_employee(32, 25000.00);
13
14 return 0;
15 }
[user02@FC4 Lesson10]$ g++ -o show_emp show_emp.cpp[user02@FC4 Lesson10]$ ./show_emp
The employee is 32 years old
The employee makes $25000
[user02@FC4 Lesson10]$