-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopplab.cpp
More file actions
executable file
·301 lines (244 loc) · 3.85 KB
/
Copy pathopplab.cpp
File metadata and controls
executable file
·301 lines (244 loc) · 3.85 KB
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
#include<iostream>
#include<string.h>
using namespace std;
class Student{
private:
char name[15];
char addr[25];
public:
Student(char nm[], char add[]){
strcpy(name , nm);
strcpy(addr , add);
}
void show(){
cout<<"Name is : "<<name<<endl;
cout<<"Address is : "<<addr<<endl;
}
};
class Marks : public Student{
private:
int sub1, sub2, sub3, total;
public:
Marks(char nm[], char add[], int a, int b, int c):Student(nm, add){
sub1 = a;
sub2 = b;
sub3 = c;
total = a + b + c;
}
void show_detail();
};
void Marks::show_detail(){
show();
cout<<"Marks of 1st sub : "<<sub1<<endl;
cout<<"Marks of 1st sub : "<<sub2<<endl;
cout<<"Marks of 1st sub : "<<sub2<<endl;
cout<<"Total Marks : "<<total<<endl;
}
int main(){
Marks marks("Faizan", "Hangyu", 66, 77, 88);
marks.show_detail();
}
/*
class A
{
public:
A()
{
cout<<"Base"<<endl;
}
};
class B: public A
{
public:
B()
{
cout<<"Dev";
}
};
int main(){
B();
}
class Animal
{
public:
void info()
{
cout<<"I am an animal. "<<endl;
}
};
class Cat : public Animal
{
public:
void meow()
{
cout<<"I am a cat. Meow"<<endl;
}
};
class Dog : public Animal{
public:
void bark(){
cout<<"SAAD SAAD"<<endl;
}
};
int main(){
Dog dog;
dog.info();
dog.bark();
Cat c;
c.info();
c.meow();
}
class A{
public:
void print()
{
//A::print);
cout<<"I am A Class :)"<<endl;
}
};
class B
{
public:
void print()
{
cout<<"I am class B"<<endl;
}
};
class C : public B, public A{
public:
void print()
{
A::print();
B::print();
cout<<"I am class c";
}
};
int main(){
C c;
c.print();
//b.print();
}
#include<iostream>
using namespace std;
class base1
{
protected:
int x;
public:
void readx(){
cout<<"Enter value of x : ";
cin>>x;
}
void showx()
{
cout<<"x = "<<x;
}
};
class base2
{
protected:
int y;
public:
void ready()
{
cout<<"Enter value of y : ";
cin>>y;
}
void showy()
{
cout<<"y = "<<y;
}
};
class der : public base1, public base2
{
private:
int z;
public:
void add()
{
z = x+y;
}
void showz()
{
cout<<"\n = "<<z;
}
};
int main(){
der d;
d.readx();
d.ready();
d.showx();
d.showy();
d.add();
d.showz();
}
class person {
private:
char name[20];
long int phno;
public:
void read() {
cout<<"Enter name and phno = ";
cin>>name>>phno;
}
void show() {
cout<<"\nName = "<<name;
cout<<"\nPhone number = "<<phno;
}
}; // end of person class
class student : public person {
private:
int rollno;
char course[20];
public:
void read() {
person::read();//Access person's read()
cout<<"Enter rollno and course=";
cin>>rollno>>course;
}
void show() {
person::show(); //Access person's show()
cout<<"\nRollno = "<<rollno;
cout<<"\nCourse ="<<course;
}
}; // end of student class
class exam : public student {
private:
int m[4];
double per;
public:
void read();
void cal();
void show();
}; // end of exam class
// Function definitions
void exam::read()
{
student::read();//Access student's read()
cout<<"Enter marks :";
for(int i=0;i<4;i++)
cin>>m[i];
}
void exam::cal()
{
int tot_marks=0;
for(int i=0;i<4;i++)
tot_marks+=m[i];
per=double(tot_marks)/4;
}
void exam::show()
{
student::show();//Access student's show()
cout<<"\nMarks :";
for(int i=0;i<4;i++)
cout<<m[i]<<"\t";
cout<<"\nPercentage = "<<per;
}
//main function
int main() {
exam e1;
e1.read();
e1.cal();
e1.show();
return 0;
}*/