Your problematic line is:
else if (grade <= 80 && >= 89)
This is invalid syntax which can be fixed with the insertion of grade in the second half:
else if (grade <= 80 && grade >= 89)
However, I'd like you to tell me what number is both less than or equal to 80 and greater than or equal to 89 at the same time. It's been quite a while since I did my university courses but I don't think basic mathematics has changed that drastically :-) I thin what you meant to say is:
else if (grade >= 80 && grade <= 89)
but see below for a better solution.
You have a few problems in that code that need fixing.
You ask for the user input after you accept it. Your Please enter grade should come before the scanner input. You also ask within a block, which is unnecessary here.
Your first if statement checks some mythical A variable rather than the correct grade.
Your else if is the wrong sense, as already mentioned. This can be fixed by reversing the <= and >= symbols but, since you're already in the else bit, it means you're not >= 90 so you can just get away with the lower bounds check.
You appear to be calling nextlnt (with a lower-case l rather than an upper-case I.
It's usually a good idea to finish off with a default else so you can see what's really happening in your code.
Fixing those problems gives you something like:
public class QuizGrading
{
public static void main (String [] args)
{
int grade = 100;
System.out.print("Please enter grade");
Scanner in = new Scanner (System.in);
grade.input.in.nextInt();
if (grade >= 90)
{
System.out.println("You have been graded A");
}
else if (grade >= 80)
{
System.out.println("You have been graded B");
} else {
// As many else-if statements as required.
System.out.println("You have been graded C or less");
}
}
}
}at the end. – Mysticial Feb 13 '12 at 0:41if (A >= 90), which must be causing problems. Guessing you meanif (grade >= 90)– Bort Feb 13 '12 at 0:41