import java.io.*; import java.util.Scanner; public class GradeReport { public static void main(String[] args) throws IOException { char grade = 'q'; Scanner scan = new Scanner(System.in); // ask the user for a grade System.out.print("Enter an integer grade between 0-100: "); int score = scan.nextInt(); // Some logic belongs here in order to convert the score into a // letter grade. // output the report to the user } }