Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.util.Scanner;
- class iftest01 {
- public static void main(String[] args) {
- int age;
- Scanner sc = new Scanner(System.in);
- System.out.print("How old are you?");
- age = sc.nextInt();
- if (age > 13) {
- System.out.println("Adult ticket please.");
- } else {
- System.out.println("Children ticket please.");
- }
- }
- }
Add Comment
Please, Sign In to add comment