fork(2) 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 = 100;
  10.  
  11. int capuchinoPrice = 150;
  12. int espressoPrice = 80;
  13. int waterPrice = 20;
  14. int milkPrice = 50;
  15. int hotChokolatePrice = 120;
  16. int mokachinoPrice = 110;
  17.  
  18. System.out.println("Кофе-машина");
  19.  
  20. boolean canBuyAnything = false;
  21.  
  22. if(moneyAmount >= capuchinoPrice) {
  23. canBuyAnything = true;
  24. System.out.println("Вы можете купить капучино");
  25. }
  26.  
  27. if(moneyAmount >= espressoPrice) {
  28. canBuyAnything = true;
  29. System.out.println("Вы можете купить экпрессо");
  30. }
  31.  
  32. if(moneyAmount >= waterPrice) {
  33. canBuyAnything = true;
  34. System.out.println("Вы можете купить воду");
  35. }
  36.  
  37. if(moneyAmount >= milkPrice) {
  38. canBuyAnything = true;
  39. System.out.println("Вы можете купить молоко");
  40. }
  41.  
  42. if(moneyAmount >= hotChokolatePrice) {
  43. canBuyAnything = true;
  44. System.out.println("Вы можете купить горячий шоколад");
  45. }
  46.  
  47. if(moneyAmount >= mokachinoPrice) {
  48. canBuyAnything = true;
  49. System.out.println("Вы можете купить моккачино");
  50. }
  51.  
  52. if(canBuyAnything == false) {
  53. System.out.println("Недостаточно средств! Внесите ещё!!!");
  54. }
  55. }
  56. }
Success #stdin #stdout 0.05s 2184192KB
stdin
Standard input is empty
stdout
Кофе-машина
Вы можете купить экпрессо
Вы можете купить воду
Вы можете купить молоко