You are viewing a single comment's thread. Return to all comments →
Java:
for(int i=0; i<grades.size(); i++){ if(grades.get(i)<38) continue; else if((5 - grades.get(i)%5) < 3) grades.set(i, grades.get(i)+(5 - grades.get(i)%5)); } return grades;
Seems like cookies are disabled on this browser, please enable them to open this website
Grading Students
You are viewing a single comment's thread. Return to all comments →
Java: