-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathemploye salary.cpp
55 lines (54 loc) · 957 Bytes
/
employe salary.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#include<iostream>
#include<string.h>
using namespace std;
class employe
{
private:
int id;
string name;
double salary;
public:
employe()
{
id=0;
name="";
salary=0;
}
employe(int i,string n, double d)
{
id=i;
name=n;
salary=d;
}
void set_id(int i)
{
id=i;
}
void set_name(string n)
{
name=n;
}
void set_salary(double d)
{
salary=d;
}
void print_info()
{
cout<<"ID: "<<id<<endl;
cout<<"Name: "<<name<<endl;
cout<<"salary: "<<salary<<endl<<endl;
}
};
int main()
{
employe s1;
employe s2(18111122,"A Rahman",20000.00);
employe employe_list[10];
employe merit_list[5];
s1.set_id(18334455);
s1.set_name("A Karim");
s1.set_salary(15000.00);
s1.print_info();
s2.print_info();
return 0;
}