-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmethodTester.java
474 lines (353 loc) · 13.4 KB
/
methodTester.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
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
import java.io.BufferedReader;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;
import java.io.PrintWriter;
import java.util.*;
import java.io.*;
/**
* <h1>Student</h1>
* The program represents a student.
*
* @authors Javier Campos & Alberto Pizano
* @version 1.0
* @since 2018-04-18
*/
public class methodTester {
// create static course object
static CourseSection course = new CourseSection();
private static void studentLoad() throws IOException {
BufferedReader file1;
Student student1; // student object
//String line;
file1 = new BufferedReader(new FileReader("Marks.txt"));
file1.readLine(); // skips 1st line
file1.readLine(); // skips 2nd line
student1 = Student.loadFromST(file1); // using String Tokenizer
System.out.println(student1);
//file1.close();
}
private static void courseLoad() throws IOException {
BufferedReader aFile = new BufferedReader(new FileReader("Marks.txt"));
CourseSection course = CourseSection.loadFrom(aFile);
course.listStudents(); // this outputs the STUDENT OBJECTS IN THE ARRAY LIST!
//aFile.close();
}
public static Student createStudent(){
Scanner scanner = new Scanner(System.in);
int id;
float a1, a2, a3, a4, midterm, finalExam;
System.out.print("Enter the student's ID: ");
id = enterID();
System.out.print("Enter the grade for assigment #1: ");
a1 = enterGradeA1();
System.out.print("Enter the grade for assigment #2: ");
a2 = enterGradeA2();
System.out.print("Enter the grade for assigment #3: ");
a3 = enterGradeA3();
System.out.print("Enter the grade for assigment #4: ");
a4 = enterGradeA4();
System.out.print("Enter the midterm exam grade: ");
midterm = enterGradeMidterm();
System.out.print("Enter the final exam grade: ");
finalExam = enterGradeFinal();
Student s = new Student(id, a1, a2, a3, a4, midterm, finalExam);
return s;
}
public static int enterID(){
Scanner scanner = new Scanner(System.in);
int id = 0;
try{
System.out.print("Enter the student's ID: ");
id = scanner.nextInt();
}catch(InputMismatchException e){
System.out.println("Error: InputMismatchException");
id = enterID();
}
return id;
}
/*
* Checks if the user is enter a valid grade
*/
public static float enterGradeA1(){
Scanner scanner = new Scanner(System.in);
float grade = 0f;
try{
System.out.print("Enter the student's grade: ");
grade = scanner.nextFloat();
if(grade > 35 || grade < 0){
System.out.println("Invalid Grade");
grade = enterGradeA1();
}
}catch(InputMismatchException e){
System.out.println("Error: InputMismatchException");
grade = enterGradeA1();
}
return grade;
}
public static float enterGradeA2(){
Scanner scanner = new Scanner(System.in);
float grade = 0f;
try{
System.out.print("Enter the student's grade: ");
grade = scanner.nextFloat();
if(grade > 35 || grade < 0){
System.out.println("Invalid Grade");
grade = enterGradeA2();
}
}catch(InputMismatchException e){
System.out.println("Error: InputMismatchException");
grade = enterGradeA2();
}
return grade;
}
public static float enterGradeA3(){
Scanner scanner = new Scanner(System.in);
float grade = 0f;
try{
System.out.print("Enter the student's grade: ");
grade = scanner.nextFloat();
if(grade > 35 || grade < 0){
System.out.println("Invalid Grade");
grade = enterGradeA3();
}
}catch(InputMismatchException e){
System.out.println("Error: InputMismatchException");
grade = enterGradeA3();
}
return grade;
}
public static float enterGradeA4(){
Scanner scanner = new Scanner(System.in);
float grade = 0f;
try{
System.out.print("Enter the student's grade: ");
grade = scanner.nextFloat();
if(grade > 30 || grade < 0){
System.out.println("Invalid Grade");
grade = enterGradeA4();
}
}catch(InputMismatchException e){
System.out.println("Error: InputMismatchException");
grade = enterGradeA4();
}
return grade;
}
public static float enterGradeMidterm(){
Scanner scanner = new Scanner(System.in);
float grade = 0f;
try{
System.out.print("Enter the student's grade: ");
grade = scanner.nextFloat();
if(grade > 30 || grade < 0){
System.out.println("Invalid Grade");
grade = enterGradeMidterm();
}
}catch(InputMismatchException e){
System.out.println("Error: InputMismatchException");
grade = enterGradeMidterm();
}
return grade;
}
public static float enterGradeFinal(){
Scanner scanner = new Scanner(System.in);
float grade = 0f;
try{
System.out.print("Enter the student's grade: ");
grade = scanner.nextFloat();
if(grade > 100 || grade < 0){
System.out.println("Invalid Grade");
grade = enterGradeFinal();
}
}catch(InputMismatchException e){
System.out.println("Error: InputMismatchException");
grade = enterGradeFinal();
}
return grade;
}
public static void finalAdder() throws IOException
{
BufferedReader file1;
file1 = new BufferedReader(new FileReader("Marks.txt"));
course = CourseSection.loadFrom(file1);
course.addStudent(createStudent()); //course is for adding and saving student test; course2 is for search test
course.listStudents();
PrintWriter aFile;
aFile = new PrintWriter(new FileWriter("Marks_Add_method_output_test.txt"));
course.saveTo(aFile);
aFile.close();
}
public static void search() throws IOException{
BufferedReader aFile;
CourseSection course2 = new CourseSection(); //creates course object which is ArrayList of Student objects
aFile = new BufferedReader( new FileReader("Marks.txt"));
course2 = CourseSection.loadFrom(aFile); // reads .txt into course ArrayList
Scanner scanner = new Scanner(System.in);
int id;
boolean foundStudent = true;
course2.listStudents();
System.out.print("Enter the Student's ID: ");
id = enterID();
for(Student s : course2.getStudents())
{
if(s.getID() == id) {
System.out.println("The student's information is: ");
System.out.println("StudentID: " + s.getID());
System.out.println("Assignment 1: " + s.getA1());
System.out.println("Assignment 2: " + s.getA2());
System.out.println("Assignment 3: " + s.getA3());
System.out.println("Assignment 4: " + s.getA4());
System.out.println("Midterm: " + s.getMidterm());
System.out.println("Final Exam: " + s.getFinalExam());
}
}
// I still need to write a else condition in here in case the searched studentID is NOT found
}
public static void remove() throws IOException{
BufferedReader aFile;
aFile = new BufferedReader( new FileReader("Marks.txt"));
course = CourseSection.loadFrom(aFile); // reads .txt into course ArrayList
Scanner scanner = new Scanner(System.in);
int id;
boolean foundStudent = true;
course.listStudents(); // to see the ArrayList of students before you remove to make sure it worked
System.out.print("Enter the Student's ID: ");
id = enterID();
Iterator studentIterator = course.iterator();
while(studentIterator.hasNext()) {
Student s = (Student)studentIterator.next();
if(s.getID() == id)
studentIterator.remove();
}
course.listStudents(); // list the students to make sure it worked!!!
PrintWriter file1;
file1 = new PrintWriter(new FileWriter("Marks_Remove_method_output_test.txt"));
course.saveTo(file1);
//aFile.close();
}
public static void list() throws IOException{
BufferedReader file1;
file1 = new BufferedReader(new FileReader("Marks.txt"));
course = CourseSection.loadFrom(file1);
int i = 0;
Scanner scanner = new Scanner(System.in);
String answer;
//Student s; = course.getStudents();
while(i < course.getSize())
{
while(i<25)
{
Student s = course.getStudents().get(i);
System.out.println(s.getID());
i++;
}
//-----------------------------------------------1
System.out.println("Type ENTER to continue");
answer = scanner.next();
answer = answer.toUpperCase();
if(answer.equals("ENTER"))
{
while(i < 50)
{
Student s = course.getStudents().get(i);
System.out.println(s.getID());
i++;
}
//-------------------------------------------------2
System.out.println("Type ENTER to continue");
answer = scanner.next();
answer = answer.toUpperCase();
if(answer.equals("ENTER"))
{
while(i < 75)
{
Student s = course.getStudents().get(i);
System.out.println(s.getID());
i++;
}
//--------------------------------------------- 3
System.out.println("Type ENTER to continue");
answer = scanner.next();
answer = answer.toUpperCase();
if(answer.equals("ENTER"))
{
while(i < course.getSize())
{
Student s = course.getStudents().get(i);
System.out.println(s.getID());
i++;
}
}
}
}
}
}
public static String calcGrade(float n) {
if(n >= 90)
return "A";
else if ((n < 90) && (n >= 70))
return "B";
else if((n < 70) && (n >= 60))
return "C";
else if((n < 60) && (n >= 50))
return "D";
else
return "F";
}
public static int search(int id) {
int ans = 0;
for(int i =0; i < course.getSize(); i++)
{
Student s = course.getStudents().get(i);
if(id == s.getID())
ans = course.getStudents().indexOf(s);
}
return ans;
}
public static int realSearch(int index) {
int ans =3;
for(int i = 0; i < course.getSize(); i++)
{
Student s = course.getStudents().get(i);
//System.out.println(s.getID());
if(index == course.getStudents().indexOf(s))
ans = s.getID();
}
return ans;
}
public static int yeah(int k) {
int[] thearray = {1, 2, 7, 3, 5};
int ans= 0;
for(int i=0; i<thearray.length; i++) {
if(k == thearray[i])
{
ans= i;
return ans;
}
}
return -1;
}
public static void main(String[] args) throws IOException
{
BufferedReader file1;
file1 = new BufferedReader(new FileReader("Marks.txt"));
course = CourseSection.loadFrom(file1);
//System.out.println("Testing Student loader:");
//studentLoad(); // testing to see if it outputs 1 Student Object per line
//System.out.println();
//System.out.println("Testing CourseSection loader:");
//courseLoad(); // this should output the Entire marks.txt file as an ArrayList of Student objects
//search(); // test SEARCH method
//course.addStudent(createStudent());
//finalAdder(); // test ADD method
//remove(); // test REMOVE method
//System.out.println("The size of course ArrayList<Student> is: " + course.getSize());
//list();
//System.out.println(course.pullA1(2));
System.out.println(methodTester.search(15471));
System.out.println(methodTester.search(202366));
System.out.println(methodTester.realSearch(7));
System.out.println(methodTester.realSearch(55));
System.out.println(methodTester.yeah(9));
}
}