-
Notifications
You must be signed in to change notification settings - Fork 0
/
Student.java
285 lines (240 loc) · 9.57 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
import java.io.*;
import java.util.Scanner;
import java.util.List;
import java.util.ArrayList;
import java.io.File;
import java.io.PrintWriter;
public class Student {
// Private fields to store student data
private String firstName;
private String lastName;
private String course;
// Constructor to initialize student data
public Student(String firstName, String lastName, String course) {
this.firstName = firstName;
this.lastName = lastName;
this.course = course;
}
// Public getter methods to access student data from outside the class
public String getFirstName() {
return firstName;
}
public String getLastName() {
return lastName;
}
public String getCourse() {
return course;
}
public static void main(String[] args) {
List<Student> students = new ArrayList<>();
try (FileWriter writer = new FileWriter("input.txt")) {
//didn't connected to input file so wrote data to input file
writer.write("4\n");
writer.write("Geller, Monica\n");
writer.write("English\n80 90 95\n");
writer.write("Doe, Jane\n");
writer.write("Science\n95 85 80 90\n");
writer.write("Green, Rachel\n");
writer.write("Math\n75 85 95 90\n");
writer.write("Johnson, Joey\n");
writer.write("Math\n75 85 55 70\n");
} catch (IOException e) {
System.out.println("Error writing to input file: " + e.getMessage());
}
//read data from the input file
try {
// create a scanner for reading the input file
Scanner scanner = new Scanner(new File("input.txt"));
File file = new File("input.txt");
BufferedReader br = new BufferedReader(new FileReader("input.txt"));
if (br.readLine() == null && file.length() == 0)
{
System.out.println("No errors, and file empty");
System.out.println(" ");
}
else
{
System.out.println("File contains something");
System.out.println(" ");
}
// read the number of students
int numStudents = Integer.parseInt(scanner.nextLine());
// read each student's data
for (int i = 0; i < numStudents; i++) {
String[] nameParts = scanner.nextLine().split(", ");
String course = scanner.nextLine();
String[] gradeParts = scanner.nextLine().split(" ");
double[] grades = new double[gradeParts.length];
for (int d = 0; d < gradeParts.length; d++) {
grades[d] = Double.parseDouble(gradeParts[d]);
}
Student student;
if (course.equals("English")) {
student = new EnglishStudent(nameParts[1], nameParts[0], grades[0], grades[1], grades[2]);
} else if (course.equals("Science")) {
student = new ScienceStudent(nameParts[1], nameParts[0], grades[0], grades[1], grades[2], grades[3]);
} else if (course.equals("Math")) {
student = new MathStudent(nameParts[1], nameParts[0], grades[0], grades[1], grades[2], grades[3]);
} else {
continue;
}
students.add(student);
}
} catch (Exception e) {
System.out.println("Error: " + e.getMessage());
}
//Print size of the array and Student data
System.out.println("Total students: " + students.size());
System.out.println(" ");
for (Student student : students) {
if (student instanceof EnglishStudent) {
EnglishStudent englishStudent = (EnglishStudent) student;
System.out.println("English Student: " + student.getFirstName() + " " + student.getLastName());
System.out.println("Final Exam Grade: " + englishStudent.getFinalExamGrade() + ". Final Average: " + englishStudent.calculateAverage() + ", Letter Grade: " + student.calculateLetterGrade(englishStudent.calculateAverage()));
System.out.println(" ");
}
}
for (Student student : students) {
if (student instanceof ScienceStudent) {
ScienceStudent scienceStudent = (ScienceStudent) student;
System.out.println("Science Student: " + student.getFirstName() + " " + student.getLastName());
System.out.println("Final Exam Grade: " + scienceStudent.getFinalExamGrade() + ". Final Average: " + scienceStudent.calculateAverage() + ", Letter Grade: " + student.calculateLetterGrade(scienceStudent.calculateAverage()));
System.out.println(" ");
}
}
for (Student student : students) {
if (student instanceof MathStudent) {
MathStudent mathStudent = (MathStudent) student;
System.out.println("Math Student: " + student.getFirstName() + " " + student.getLastName());
System.out.println("Final Exam Grade: " + mathStudent.getFinalExamGrade() + ". Final Average: " + mathStudent.calculateAverage() + ", Letter Grade: " + student.calculateLetterGrade(mathStudent.calculateAverage()));
System.out.println(" ");
}
}
//output file
try {
// Open a file for writing
PrintWriter outputFile = new PrintWriter("output.txt");
for (Student student : students) {
if (student instanceof EnglishStudent) {
EnglishStudent englishStudent = (EnglishStudent) student;
outputFile.println("Subject: English");
outputFile.println("Student: " + student.getFirstName() + " " + student.getLastName());
outputFile.println("Final Average: " + englishStudent.calculateAverage());
outputFile.println("Letter Grade: " + student.calculateLetterGrade(englishStudent.calculateAverage()));
outputFile.println(" ");
} else if (student instanceof ScienceStudent) {
ScienceStudent scienceStudent = (ScienceStudent) student;
outputFile.println("Subject: Science");
outputFile.println("Student: " + student.getFirstName() + " " + student.getLastName());
outputFile.println("Final Average: " + scienceStudent.calculateAverage());
outputFile.println("Letter Grade: " + student.calculateLetterGrade(scienceStudent.calculateAverage()));
outputFile.println(" ");
} else if (student instanceof MathStudent) {
MathStudent mathStudent = (MathStudent) student;
outputFile.println("Subject: Math");
outputFile.println("Student: " + student.getFirstName() + " " + student.getLastName());
outputFile.println("Final Average: " + mathStudent.calculateAverage());
outputFile.println("Letter Grade: " + student.calculateLetterGrade(mathStudent.calculateAverage()));
outputFile.println(" ");
}
}
// Close the file when you are done writing
outputFile.close();
} catch (FileNotFoundException e) {
System.out.println("Error: Unable to create output file");
}
}
public static String calculateLetterGrade(double average) {
if (average >= 90) {
return "A";
} else if (average >= 80) {
return "B";
} else if (average >= 70) {
return "C";
} else if (average >= 60) {
return "D";
} else {
return "F";
}
}
//public void printGradeDistribution(PrintWriter writer, List<Student> students) {
// // Initialize counters for each letter grade
// int aCount = 0;
// int bCount = 0;
// int cCount = 0;
// int dCount = 0;
// int fCount = 0;
// // Count the number of students with each letter grade
// for (Student student : students) {
// String letterGrade = student.calculateLetterGrade(englishStudent.calculateAverage());
// switch (letterGrade) {
// case "A":
// aCount++;
// break;
// case "B":
// bCount++;
// break;
// case "C":
// cCount++;
// break;
// case "D":
// dCount++;
// break;
// case "F":
// fCount++;
// break;
// }
// }
// for (Student student : students) {
// String letterGrade = student.calculateLetterGrade(scienceStudent.calculateAverage());
// switch (letterGrade) {
// case "A":
// aCount++;
// break;
// case "B":
// bCount++;
// break;
// case "C":
// cCount++;
// break;
// case "D":
// dCount++;
// break;
// case "F":
// fCount++;
// break;
// }
// }
// for (Student student : students) {
// String letterGrade = student.calculateLetterGrade(mathStudent.calculateAverage());
// switch (letterGrade) {
// case "A":
// aCount++;
// break;
// case "B":
// bCount++;
// break;
// case "C":
// cCount++;
// break;
// case "D":
// dCount++;
// break;
// case "F":
// fCount++;
// break;
// }
// }
// // Print the grade distribution
// writer.println("\nGrade Distribution");
// writer.println("A: ", aCount);
// writer.println(" ");
// writer.println("B: ", bCount);
// writer.println(" ");
// writer.println("C: ", cCount);
// writer.println(" ");
// writer.println("D: ", dCount);
// writer.println(" ");
// writer.println("F: ", fCount);
// }
}