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. System.out.println("Кофе-машина");
  16.  
  17. boolean canBuyAnything = false;
  18.  
  19. if(moneyAmount >= cappucinoPrice) {
  20. canBuyAnything = true;
  21. System.out.println("Вы можете купить капучино");
  22. }
  23.  
  24. if(moneyAmount >= espressoPrice) {
  25. canBuyAnything = true;
  26. System.out.println("Вы можете купить эспрессо");
  27. }
  28.  
  29. if(moneyAmount >= waterPrice) {
  30. canBuyAnything = true;
  31. System.out.println("Вы можете купить воду");
  32. }
  33.  
  34. if(moneyAmount >= milkPrice) {
  35. canBuyAnything = true;
  36. System.out.println("Вы можете купить молоко");
  37. }
  38. if(canBuyAnything == false) {
  39. System.out.println("Недостаточно средств! Внесите ещё!!!");
  40. }
  41. }
  42. }
Success #stdin #stdout 0.05s 2184192KB
stdin
Standard input is empty
stdout
Кофе-машина
Вы можете купить капучино
Вы можете купить эспрессо
Вы можете купить воду
Вы можете купить молоко