fork 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. boolean canBuyAnything = false;
  15.  
  16. int moneyAmount = 100;
  17.  
  18. String[] drinks = {"капучино", "эспрессо", "латте", "вода", "молоко"};
  19. int[] prices = {60, 80, 150, 20, 30};
  20.  
  21. for( int i = 0; i < 5; i = i + 1)
  22. {
  23. if(moneyAmount >= prices[i])
  24. {
  25. System.out.println("Вы можете купить" + " " + drinks[i]);
  26. canBuyAnything = true;
  27. }
  28. }
  29.  
  30. if(canBuyAnything == false) {
  31. System.out.println("Недостаточно средств!");
  32. }
  33. }
  34. }
Success #stdin #stdout 0.04s 2184192KB
stdin
Standard input is empty
stdout
Кофе-машина
Вы можете купить капучино
Вы можете купить эспрессо
Вы можете купить вода
Вы можете купить молоко