fork(3) 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. // int moneyAmount = 12;
  15.  
  16. Scanner in = new Scanner(System.in);
  17. System.out.printf("сколько внести? ",/n);
  18. int moneyAmount=in.nextInt();
  19.  
  20. System.out.println("Вы внесли " + moneyAmount + " руб.");
  21.  
  22. int cappucinoPrice = 150;
  23. int americanoPrice = 65;
  24. int waterPrice = 20;
  25. int teaPrice = 80;
  26.  
  27. boolean canBuySomething = false;
  28.  
  29. if(moneyAmount >= cappucinoPrice) {
  30. System.out.println("Вы можете купить капучино");
  31. canBuySomething = true;
  32. }
  33.  
  34. if(moneyAmount >= americanoPrice) {
  35. System.out.println("Вы можете купить американо");
  36. canBuySomething = true;
  37. }
  38.  
  39. if(moneyAmount >= waterPrice) {
  40. System.out.println("Вы можете купить воду");
  41. canBuySomething = true;
  42. }
  43.  
  44. if(moneyAmount >=teaPrice) {
  45. System.out.println("Вы можете купить чай");
  46. }
  47.  
  48. if(canBuySomething == false) {
  49. System.out.println("Недостаточно средств :( Изучайте Java и зарабатывайте много!))");
  50. }
  51. }
  52. }
Compilation error #stdin compilation error #stdout 0.18s 37696KB
stdin
6
5
compilation info
Main.java:17: error: illegal start of expression
		System.out.printf("??????? ??????? ",/n);
		                                     ^
1 error
stdout
Standard output is empty