-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtut40.cpp
84 lines (75 loc) · 1.47 KB
/
tut40.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
#include <iostream>
using namespace std;
void name()
{
cout << 'Author: Varun Gupta' << endl;
}
class Student
{
protected:
int Roll_number;
public:
void set_roll_number(int pop)
{
Roll_number = pop;
}
void getRoll_number();
};
void Student ::getRoll_number(void)
{
cout << "The roll no is :" << Roll_number << endl;
}
class Exam : public Student
{
protected:
float biology;
float maths;
public:
void eninput(int a1, int a2)
{
biology = a1;
maths = a2;
}
void outoutput(void);
};
void Exam :: outoutput()
{
cout << "The marks of biology are :" << biology
<< endl
<< "The marks of maths are :" << maths << endl;
}
class Result : public Exam
{
protected:
float percentage;
public:
Result()
{
void getRoll_number();
void outoutput();
}
void Cal()
{
// void getRoll_number();
// void outoutput();
percentage = (maths + biology) / 2;
cout << "The percentage of marks obtained is :" << percentage << "%" << endl;
}
};
int main()
{
/*
Notes:
If we are inheriting B from A and C from B:[ A--->B--->C ]
1. A is the base class for B and B is the base class for C
2. A-->B-->C is called Inheritance Path
*/
name();
Result r1;
r1.set_roll_number(42);
r1.eninput(95.0, 98.9);
// r1.getRoll_number();
// r1.outoutput();
r1.Cal();
return 0;
}