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