Advertisement
veronikaaa86

01. Excellent Result

Mar 5th, 2022
340
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. package conditionalStatements;
  2.  
  3. import java.util.Scanner;
  4.  
  5. public class ExcellentResult {
  6. public static void main(String[] args) {
  7. Scanner scanner = new Scanner(System.in);
  8.  
  9. int grade = Integer.parseInt(scanner.nextLine());
  10.  
  11. if (grade >= 5) {
  12. System.out.println("Excellent!");
  13. }
  14. }
  15. }
  16.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement