-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathExpt_3_3.cpp
128 lines (128 loc) · 2.4 KB
/
Expt_3_3.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>
using namespace std;
class student
{
protected:
string name,rollno,gender;
public:
student()
{
name="Nishkarsh Raj";
rollno="R171217041";
gender="Male";
}
void student_details(string s1,string s2, string s3)
{
name=s1;
rollno=s2;
gender=s3;
}
void display_student_details()
{
cout<<"Details of the student are"<<endl;
cout<<"Name: "<<name<<endl;
cout<<"Roll No: "<<rollno<<endl;
cout<<"Gender: "<<gender<<endl;
}
};
/////////////////////////////////////////
class internal_marks: virtual public student
{
protected:
float marks1[6];
int i;
public:
void get_marks(float m[6])
{
for(i=0;i<6;i++)
{
marks1[i]=m[i];
}
}
void display_marks()
{
cout<<"Lets see the Internal Marks of the student"<<endl;
for(i=0;i<6;i++)
{
cout<<"Marks in subject number "<<i+1<<" are "<<marks1[i]<<endl;
}
}
};
/////////////////////////////////////////
class external_marks: public virtual student
{
protected:
float marks2[6];
public:
int i;
void get_marks(float m[6])
{
for(i=0;i<6;i++)
{
marks2[i]=m[i];
}
}
void display_marks()
{
cout<<"Lets see the External Marks of the student"<<endl;
for(i=0;i<6;i++)
{
cout<<"Marks in subject number "<<i+1<<" are "<<marks2[i]<<endl;
}
}
};
////////////////////////////////////////
class result: public internal_marks,public external_marks
{
public:
float marks[6];
int i;
void display_result()
{
for(i=0;i<6;i++)
{
marks[i]=marks1[i]+marks2[i];
cout<<"Marks in subject "<<i+1<<" out of 100 are "<<marks[i]<<endl;
}
}
};
////////////////////////////////////////
int main()
{
int i;
string name,roll,gender;
cout<<"Program for Student marks calculation"<<endl;
cout<<"Enter the name of the student"<<endl;
getline(cin,name);
cout<<"Enter the roll number of the student"<<endl;
getline(cin,roll);
cout<<"Enter the gender of the student"<<endl;
cin>>gender;
student s;
s.student_details(name,roll,gender);
cout<<"Enter the marks of student in internals 6 subject out of 30"<<endl;
float marks[6],marks1[6];
for(i=0;i<6;i++)
{
cout<<"Enter marks in subject "<<i+1<<endl;
cin>>marks[i];
}
cout<<"Enter the marks of student in Externals 6 subject out of 70"<<endl;
for(i=0;i<6;i++)
{
cout<<"Enter marks in subject "<<i+1<<endl;
cin>>marks1[i];
}
internal_marks i1;
i1.get_marks(marks);
external_marks e;
e.get_marks(marks1);
result r;
////////////////////////////////////
cout<<"Lets see the result of the student"<<endl;
s.display_student_details();
i1.display_marks();
e.display_marks();
r.display_result();
return 0;
}