class Grade {
public static void main (String args[]) {
final int score = Integer.parseInt (args[0]);
final char grade;
if (score >= 90) {
grade = 'A';
} else if (score >= 80) {
grade = 'B';
} else if (score >= 70) {
grade = 'C';
} else if (score >= 60) {
grade = 'D';
} else {
grade = 'F';
}
System.out.println ("The grade is " + grade + ".");
}
}
This is simple program is not being executed....I really dont know where I went wrong...