fork download
  1. import java.util.*;
  2. import java.lang.*;
  3. import java.io.*;
  4.  
  5. class Ideone
  6. {
  7. public static void main (String[] args) throws java.lang.Exception
  8. {
  9. int moneyAmount = 190;
  10.  
  11. int cappucinoPrice = 150;
  12. int espressoPrice = 80;
  13. int waterPrice = 20;
  14. int milkPrice = 30;
  15.  
  16. System.out.println("Кофе-машина");
  17.  
  18. boolean canBuyAnything = false;
  19.  
  20. if(moneyAmount >= cappucinoPrice) {
  21. canBuyAnything = true;
  22. System.out.println("Вы можете купить капучино");
  23. }
  24.  
  25. if(moneyAmount >= espressoPrice) {
  26. canBuyAnything = true;
  27. System.out.println("Вы можете купить эспрессо");
  28. }
  29.  
  30. if(moneyAmount >= waterPrice) {
  31. canBuyAnything = true;
  32. System.out.println("Вы можете купить воду");
  33. }
  34. if(moneyAmount >= milkPrice) {
  35. canBuyAnything = true;
  36. System.out.println("Вы можете купить молоко");
  37. }
  38.  
  39. if(canBuyAnything == false) {
  40. System.out.println("Недостаточно средств! Внесите ещё!!!");
  41. }
  42.  
  43. }
  44. }
Success #stdin #stdout 0.04s 2184192KB
stdin
Standard input is empty
stdout
Кофе-машина
Вы можете купить капучино
Вы можете купить эспрессо
Вы можете купить воду
Вы можете купить молоко