fork 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. // your code goes here
  13. System.out.println("Кофе-машина");
  14. //====================================
  15. int moneyAmount = 50;
  16. //=====================================
  17. int espressoPrice = 80;
  18. int milkPrice = 50;
  19. int capuccinoPrice = 150;
  20. int waterPrice = 20;
  21. //=====================================
  22.  
  23. boolean canBuyAnything = false;
  24.  
  25. if(moneyAmount >= espressoPrice) {
  26. System.out.println("Вы можете купить еспрессо");
  27. canBuyAnything = true;
  28. }
  29. if(moneyAmount >= milkPrice) {
  30. System.out.println("Вы можете купить молоко");
  31. canBuyAnything = true;
  32. }
  33. if(moneyAmount >= capuccinoPrice) {
  34. System.out.println("Вы можете купить Капучино");
  35. canBuyAnything = true;
  36. }
  37. if(moneyAmount >= waterPrice) {
  38. System.out.println("Вы можете купить воду");
  39. canBuyAnything = true;
  40. }
  41. if(canBuyAnything == false) {
  42. System.out.println("Недостаточно средств. Отдай мне все твои деньги");
  43. }
  44. }
  45. }
Success #stdin #stdout 0.04s 2184192KB
stdin
Standard input is empty
stdout
Кофе-машина
Вы можете купить молоко
Вы можете купить воду