-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathemploye.cpp
75 lines (75 loc) · 1.36 KB
/
employe.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#include<iostream>
#include<string.h>
using namespace std;
class employee
{
private:
int id;
string name;
double salary;
public:
employee()
{
id = 0;
name ="";
salary =0;
}
employee(int i,string n,string d)
{
id = i;
name = n;
salary=0;
}
employee(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;
}
int get_id()
{
return id;
}
string get_name()
{
return name;
}
double get_salary()
{
return salary;
}
void print_info()
{
cout<<"ID: "<<id<<endl;
cout<<"NAME: "<<name<<endl;
cout<<"Salary: "<<salary<<endl<<endl;
}
};
int main()
{
employee s1;
employee s2(1811112,"A Rahman",50000);
//employee employee_list[10];
//employee merit_list[5];
s1.set_id(181212121);
s1.set_name("A Karim");
s1.set_salary(60000);
s1.print_info();
s2.print_info();
cout<<"ID: "<<s1.get_id()<<endl;
cout<<"NAME: "<<s2.get_name()<<endl;
cout<<"Salary: "<<s2.get_salary()<<endl<<endl;
return 0;
}