Advertisement
Kosheen

My first code

Sep 18th, 2017
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1.  
  2. import java.util.Scanner;
  3.  
  4. public class Main {
  5.  
  6. public static void main(String[] args) {
  7. System.out.println("How old are you?");
  8.  
  9. Scanner sc = new Scanner(System.in);
  10. int sum = Integer.parseInt(sc.nextLine());
  11. if (sum >= 18 && sum < 60) {
  12. System.out.println("Проходите");
  13. } else if (sum >= 60) {
  14. System.out.println("Это заведение не для вас");
  15. } else {
  16. System.out.println("Можно только с родителями");
  17. }
  18. // write your code here
  19.  
  20. if (sum % 10 == 0) {
  21. System.out.println("Юбилей");
  22. }
  23.  
  24. long veryLongVariableName;
  25. }
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement