You are viewing a single comment's thread. Return to all comments →
In java, Using this code in for-loop array:
Integer grade = grades.get(i); if (grade >=38 && grade % 5 > 2) { rs.add(grade + (5 - grade % 5)); } else { rs.add(grade); }
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 →
In java, Using this code in for-loop array: