fork download
  1. /* package whatever; // don't place package name! */
  2.  
  3. import java.util.*;
  4. import java.lang.*;
  5. import java.io.*;
  6. import java.util.Scanner. *;
  7.  
  8. /* Name of the class has to be "Main" only if the class is public. */
  9. class Ideone
  10. {
  11. public static void main (String[] args) throws java.lang.Exception
  12. {
  13. System.out.println("Кофе-машина");
  14.  
  15. Scanner in = new Scanner(System.in);
  16. System.out.print("Количество денег ");
  17. int moneyAmount = in.nextInt();
  18.  
  19. System.out.printf(" %d \n", moneyAmount);
  20. in.close();
  21.  
  22.  
  23. int espressoPrice = 60;
  24. int americanoPrice = 80;
  25. int lattePrice = 150;
  26. int waterPrice = 20;
  27. int milkPrice = 40;
  28.  
  29. boolean canBuyAnything = false;
  30.  
  31. if(moneyAmount >= espressoPrice)
  32. {
  33. System.out.println("Вы можете купить эспрессо (1) ");
  34. canBuyAnything = true;
  35. }
  36.  
  37. if(moneyAmount >= americanoPrice)
  38. {
  39. System.out.println("Вы можете купить американо (2) ");
  40. canBuyAnything = true;
  41. }
  42.  
  43. if(moneyAmount >= lattePrice)
  44. {
  45. System.out.println("Вы можете купить латте (3) ");
  46. canBuyAnything = true;
  47. }
  48.  
  49. if(moneyAmount >= waterPrice)
  50. {
  51. System.out.println("Вы можете купить воду (4) ");
  52. canBuyAnything = true;
  53. }
  54.  
  55. if(moneyAmount >= milkPrice)
  56. {
  57. System.out.println("Вы можете купить молоко (5) ");
  58. canBuyAnything = true;
  59. }
  60.  
  61.  
  62. if(canBuyAnything == false) {
  63. System.out.println("Недостаточно средств!");
  64. }
  65. }
  66. }
Success #stdin #stdout 0.07s 2184192KB
stdin
1000
stdout
Кофе-машина
Количество денег  1000 
Вы можете купить эспрессо (1) 
Вы можете купить американо (2) 
Вы можете купить латте (3) 
Вы можете купить воду (4) 
Вы можете купить молоко (5)