-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStudent.cpp
47 lines (39 loc) · 918 Bytes
/
Student.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
#include <iostream>
#include "Student.h"
#define MAX_STUDENT 100
//Constructor for student
Student::Student(int id, string name, float gpa)
{
this->id=id;
this->name=name;
this->gpa=gpa;
}
//Function to store values of the object student
int Student::registerStudent()
{
string option;
cout << "Enter the student ID: ";
cin >> id;
cout << "Enter the student NAME: ";
getline(cin >> ws, name);
cout << "Enter the student GPA: ";
cin >> gpa;
return 0;
}
//Function to print all the registered students
int Student::printStudent(int pcount)
{
cout<<pcount<<") ";
cout << id << ", " << name << ", "<< gpa << endl;
return 0;
}
//Function to search all the registered students
int Student::searchStudent(int psid)
{
if (psid==id)
{
cout << "Student Details:\n\n";
cout << id << ", " << name << ", "<< gpa << endl;
}
return 0;
}