Advertisement
Guest User

Untitled

a guest
Sep 15th, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.65 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3. public class Laba {
  4.     public static void main(String [] args) {
  5.         System.out.println("Input int");
  6.         Scanner inp =new Scanner(System.in);
  7.         int x=inp.nextInt();
  8.         if(x<0) {
  9.             System.out.println("Вы ничего не купили");
  10.         }
  11.         else if(x==1) {
  12.             System.out.println("Вы купили "+x+" ноутбук.");
  13.         }
  14.         else if(x%10<5) {
  15.             System.out.println("Вы купили "+x+" ноутбуа.");
  16.         }
  17.         else if(x%10>4 ) {
  18.             System.out.println("Вы купили "+x+" ноутбуков.");
  19.         }
  20.     }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement