fork(1) download
  1.  
  2. /* package whatever; // don't place package name! */
  3.  
  4. import java.util.*;
  5. import java.lang.*;
  6. import java.io.*;
  7.  
  8. /* Name of the class has to be "Main" only if the class is public. */
  9. class Ideone
  10. {
  11. public static void main (String[] args) throws java.lang.Exception
  12. {
  13. System.out.println("Кофе-машина");
  14.  
  15. int moneyAmount = 12;
  16.  
  17. int cappucinoPrice = 150;
  18. int lattePrice = 120;
  19. int espressoPrice = 80;
  20. int milkPrice = 50;
  21.  
  22. boolean canBuyAnything = false;
  23.  
  24. if(moneyAmount >= cappucinoPrice) {
  25. System.out.println("Вы можете купить капучино");
  26. canBuyAnything = true;
  27. }
  28.  
  29. if(moneyAmount >= lattePrice) {
  30. System.out.println("Вы можете купить латте");
  31. canBuyAnything = true;
  32. }
  33.  
  34. if(moneyAmount >= espressoPrice) {
  35. System.out.println("Вы можете купить эспрессо");
  36. canBuyAnything = true;
  37. }
  38.  
  39. if(moneyAmount >= milkPrice) {
  40. System.out.println("Вы можете купить молоко");
  41. canBuyAnything = true;
  42. }
  43.  
  44. if(canBuyAnything == false) {
  45. System.out.println("Денег нет, но вы держитесь!! :)");
  46. }
  47. }
  48. }
Success #stdin #stdout 0.04s 2184192KB
stdin
Standard input is empty
stdout
Кофе-машина
Недостаточно средств! Учите джаву и идите работать! :)