-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStudent.java
107 lines (88 loc) · 2.63 KB
/
Student.java
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
import java.util.ArrayList;
public class Student {
private String studentId;
private int age;
private ArrayList<Integer> marks = new ArrayList<Integer>();
private String studentName;
private ArrayList<Course> courses = new ArrayList<Course>();
public Student(String studentId) {
this.studentId = studentId;
}
public String getId() {
return studentId;
}
public void setId(String newId) {
studentId = newId;
}
public String getName() {
return studentName;
}
public void setName(String newName) {
studentName = newName;
}
public int getAge() {
return age;
}
public void setAge(int newAge) {
age = newAge;
}
public int getMark(int i) {
return marks.get(i);
}
// return total credit for all courses enrolled
public int getCredit() {
int totalCredit = 0;
for (Course course : courses) {
totalCredit += course.getCredit();
}
return totalCredit;
}
public void addMark(int newMark) {
marks.add(newMark);
}
public void addCourse(Course newCourse) {
courses.add(newCourse);
}
// return number of courses enrolled
public int getEnroll() {
return courses.size();
}
// return average score of this student
public int avgMark() {
int totalMark = 0;
for (int i = 0; i < marks.size(); i++) {
totalMark += marks.get(i);
}
int avg = totalMark / marks.size();
return avg;
}
// return adjusted GPA
public double GPA() {
int totalGpa = 0;
for (int i = 0; i < marks.size(); i++) {
if ((marks.get(i) >= 80) & (marks.get(i) <= 100)) {
totalGpa += 4 * courses.get(i).getCredit();
} else if ((marks.get(i) >= 70) & (marks.get(i) < 80)) {
totalGpa += 3 * courses.get(i).getCredit();
} else if ((marks.get(i) >= 60) & (marks.get(i) < 70)) {
totalGpa += 2 * courses.get(i).getCredit();
} else if ((marks.get(i) >= 50) & (marks.get(i) < 60)) {
totalGpa += 1 * courses.get(i).getCredit();
} else if ((marks.get(i) >= 0) & (marks.get(i) < 50)) {
totalGpa += 0 * courses.get(i).getCredit();
} else {
// if there is invalid mark in the file, return 0
System.out.println("Error mark. Cannot calculate.");
totalGpa = 0;
}
}
double gpa = (double) totalGpa / this.getCredit();
// return two decimal places without rounding
// code referenced from:
// [3]"How can I truncate a double to only two decimal places in Java?", Stack
// Overflow, 2020. [Online]. Available:
// https://stackoverflow.com/questions/7747469/how-can-i-truncate-a-double-to-only-two-decimal-places-in-java.
// [Accessed: 02- Jun- 2020].
return Math.floor(gpa * 100) / 100;
}
}