if (Fscore >= 0 && Fscore <= 39) {
System.out.println("This score has achieved a Fail");
} else
if (Fscore >= 40 && Fscore <= 49) {
System.out.println("This score has achieved a Third class");
} else
if (Fscore >= 50 && Fscore <= 59); {
System.out.println("This score has achieved a Second class, division 2 (or 2.2)");
} else
if (Fscore >= 60 && Fscore <= 69); {
System.out.println("This score has achieved a First class, division 1 (or 2.1)");
} else {
System.out.println("This score has achieved a First class");
}
I've written this but when I get to the 3rd else if statement it the IDE says "else" without the "if". Not quite sure what that means and why its not allowing this to run?