-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnkindustrydetail.cpp
128 lines (107 loc) · 1.81 KB
/
nkindustrydetail.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
#include<iostream>
#include<conio.h>
#include<string.h>
using namespace std;
class person
{
private:
float salary;
int age;
protected:
void setsalary()
{
cout<<"Enter the salary of employee"<<endl;
cin>>salary;
}
void getsalary()
{
cout<<salary<<" ";
}
public:
void setage()
{
cout<<"Enter the Employe age"<<endl;
cin>>age;
}
void getage()
{
cout<<age<<" ";
}
};
class employee:public person
{
private:
int id;
public:
char name[10];
void setid()
{ cout<<"Enter the uniqe employid "<<endl;
cin>>id;
}
void showid()
{
cout<<id<<" ";
}
void employeedetail()
{
setsalary();
}
void showsalay()
{
getsalary();
}
void getname()
{
cout<<name<<" ";
}
void setname()
{
cout<<"Enter the name of employee"<<endl;
cin>>name;
}
};
int main()
{ int n,p,c=1;
cout<<"Enter the no of employee working in your company"<<endl;
cin>>n;
cout<<"\nEnter the password to insert data in company employe file=";
cin>>p;
cout<<"\n";
employee e[n];
if(p==1135)
{
for(int i=0;i<n;i++)
{
e[i].setid();
e[i].setname();
cin.ignore();
e[i].setage();
e[i].employeedetail();
}
}
while(c<=2)
{
int s;
cout<<"Enter passwort to show detail of company employee\n";
cin>>s;
if(s==4352)
{
cout<<"SNO"<<" "<<"emid"<<" "<<"Emname"<<" "<<"Age"<<" "<<"salary"<<endl;
for(int i=0;i<n;i++)
{
cout<<i+1<<" ";
e[i].showid();
e[i].getname();
e[i].getage();
e[i].showsalay();
cout<<"\n";
}
break;
}
else
{
c++;
cout<<"please insert correct password to see detail\n";
}
}
}