fork(5) 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. System.out.println("Кофемашина");
  13.  
  14. Scanner s = new Scanner(System.in);
  15.  
  16. int moneyAmount = s.nextInt();
  17.  
  18. int espressoPrice = 80;
  19. int capuccinoPrice = 150;
  20. int waterPrice = 20;
  21. int milkPrice = 50;
  22.  
  23. boolean canBuyAnything = false;
  24.  
  25. if (moneyAmount >= espressoPrice) {
  26.  
  27. System.out.println("Вы можете купить эспрессо");
  28. canBuyAnything = true;
  29.  
  30. }
  31.  
  32. if (moneyAmount >= capuccinoPrice) {
  33.  
  34. System.out.println("Вы можете купить капучино");
  35. canBuyAnything = true;
  36.  
  37. }
  38.  
  39. if (moneyAmount >= milkPrice) {
  40.  
  41. System.out.println("Вы можете купить молоко");
  42. canBuyAnything = true;
  43.  
  44. }
  45.  
  46. if (moneyAmount >= waterPrice) {
  47.  
  48. System.out.println("Вы можете купить воду");
  49. canBuyAnything = true;
  50. }
  51.  
  52. if (canBuyAnything == false) {
  53.  
  54. System.out.println("Вы ничего купить не можете");
  55. }
  56. }
  57. }
Success #stdin #stdout 0.06s 2184192KB
stdin
400
stdout
Кофемашина
Вы можете купить эспрессо
Вы можете купить капучино
Вы можете купить молоко
Вы можете купить воду