fork(1) 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 = 25;
  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.  
  35. if(moneyAmount >= milkprice) {
  36. canBuyAnything = true;
  37. System.out.println("Вы можете купить молоко");
  38. }
  39.  
  40. if(canBuyAnything == false) {
  41. System.out.println("Недостаточно средств! Внесите ещё!!!");
  42. }
  43. }
  44. }
Success #stdin #stdout 0.04s 2184192KB
stdin
Standard input is empty
stdout
Кофе-машина
Вы можете купить капучино
Вы можете купить эспрессо
Вы можете купить воду
Вы можете купить молоко