Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public String getGrade(int mark, boolean isMaths) {

if (isGradeA(mark, isMaths))
grade = "A";
else if (isBGrade(mark, isMaths)) {
else if (isGradeB(mark, isMaths)) {
grade = "B";
}
return grade;
Expand Down Expand Up @@ -63,4 +63,4 @@ public String willQualifyForQuiz(int marks1, int marks2, boolean isMaths) {
return "MAYBE";
}

}
}