-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathClassroom.java
More file actions
99 lines (66 loc) · 2.31 KB
/
Classroom.java
File metadata and controls
99 lines (66 loc) · 2.31 KB
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
package io.zipcoder;
import com.sun.org.apache.xml.internal.security.encryption.AgreementMethod;
import java.util.*;
public class Classroom {
// Declaring variables
public int maxNumOfStudents;
Student[] students = new Student[30];
ArrayList<Student> studentsList = new ArrayList();
public Classroom(int maxNumOfStudents){
this.maxNumOfStudents = maxNumOfStudents;
}
public Classroom(Student[] students) {
this.students = students;
}
public Classroom(){
}
public ArrayList<Student> getStudents(){
return studentsList;
}
public Double getAverageExamScore() {
Double totalExams = 0.0;
for (int i = 0; i < students.length; i++) {
totalExams += students[i].getAverageExamScore();
}
return totalExams / students.length;
}
public void addStudent(Student student1) {
studentsList.add(student1);
}
public void removeStudent(Student firstName, Student lastName) {
for (int i = 0; i < studentsList.size(); i++) {
if(studentsList.get(i).firstName.equals(firstName) && studentsList.get(i).lastName.equals(lastName)){
studentsList.remove(i);
}
students[students.length-1] = null;
break;
}
}
public Student[] getStudentsByScore() {
Arrays.sort(students, Collections.reverseOrder());
return students;
}
public Map getGradeBook() {
Map<String, String> gradeBook = new TreeMap<>();
for (int i = 0; i < students.length; i++) {
if(students[i].getAverageExamScore() >= 90){
gradeBook.put(students[i].firstName, "A");
}
else if(students[i].getAverageExamScore() >= 80) {
gradeBook.put(students[i].firstName, "B");
}
else if(students[i].getAverageExamScore() >= 70) {
gradeBook.put(students[i].firstName, "C");
}
else if(students[i].getAverageExamScore() >= 60) {
gradeBook.put(students[i].firstName, "D");
}
else {gradeBook.put(students[i].firstName, "F");
}
}
for (Map.Entry j: gradeBook.entrySet()){
System.out.println(j);
}
return gradeBook;
}
}