Georgi_Benchev

Untitled

Nov 22nd, 2018
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.33 KB | None | 0 0
  1. package lekciq_3;
  2.  
  3.         import java.util.Scanner;
  4.  
  5. public class task01 {
  6.     public static void main(String[] args) {
  7.         Scanner scanner = new Scanner(System.in);
  8.         double a = Double.parseDouble(scanner.nextLine());
  9.  
  10.         if (a >= 5.50) {
  11.             System.out.println("Excellent!");
  12.         }
  13.     }
  14. }
Add Comment
Please, Sign In to add comment