// // If score>=90 out "A grade of A" // otherwise, out "B or below" // import java.util.Scanner; class Prog_5_2m { public static void main(String[] args) { Scanner input = new Scanner(System.in); double score; System.out.print("Input the score: "); score = input.nextDouble(); if (score>=90) { System.out.println("You got an A.\n\n\n"); } else { System.out.println("You got a B or below.\n\n\n"); } } }