Hello jean28!

You have in your code;

else if (grade <= 4)
{
System.out.println("A +");
}
So when you enter a grade that is less than or equal to 4 it prints A+. This is exactly what...