-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtask1.cpp
More file actions
37 lines (36 loc) · 820 Bytes
/
Copy pathtask1.cpp
File metadata and controls
37 lines (36 loc) · 820 Bytes
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
#include <iostream>
using namespace std;
class student {
private:
int rollno;
int marks;
public:
string name;
string branch;
//constructor
student(string n, string b, int r, int m) {
name = n;
branch = b;
rollno = r;
marks = m;
}
//setters
void setmarks(int mar) {
marks=mar;
}
//getters
int getmarks() {
return marks;
}
void displayDetails() {
cout << "Name: " << name << endl;
cout << "Branch: " << branch << endl;
cout << "Roll No: " << rollno << endl;
cout << "Marks: " << marks << "%" << endl;
}
};
int main() {
student s1("hasini","AIML",223,90);
s1.setmarks(95);
s1.displayDetails();
}