Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package lekciq_3;
- import java.util.Scanner;
- public class task01 {
- public static void main(String[] args) {
- Scanner scanner = new Scanner(System.in);
- double a = Double.parseDouble(scanner.nextLine());
- if (a >= 5.50) {
- System.out.println("Excellent!");
- }
- }
- }
Add Comment
Please, Sign In to add comment