-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStudent.h
62 lines (46 loc) · 1.5 KB
/
Student.h
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
// Student.h
// SP2022 CSC-134 Group Project
// Group 8
#ifndef STUDENT_H
#define STUDENT_H
#include <string>
#include <iostream>
#include <iomanip>
using namespace std;
// Taylor Sanderson
// Instructions from instructor:
// Declare the following data members and member function prototypes of class Student in Student.h:
class Student
{
private:
// Data members:
string fName; // First name (string)
string lName; // Last name (string)
string ssn; // Social Security Number (string)
double scores[4]; // Array of 4 exam scores (double)
static int numStudent;// Number of student (static int)
public:
// Member functions:
// Constructor without parameter
Student();
// Constructor with parameters
Student(string _fName, string _lName, string _ssn, double _scores[4]);
// Destructor
~Student();
// Getter and setter function for each non-static data member.
string getLName();
string getFName();
string getSSN();
double* getScores();
void setLName(string _lName);
void setFName(string _fName);
void setSSN(string _ssn);
void setScores(double _scores[4]);
// Value-returning function which calculates and returns the average of 4 exam scores.
double averageScore();
// Void function which displays a student’s last name, first name, 4 exam scores and average score.
void display();
// Value-returning function which returns the number of student object created.
static int getNumStudent();
};
#endif