CJCoding With Joseph

Ticket Price by Age (Input)

Read an int called age from standard input and print the ticket price using an if / else-if chain: under 13 prints Price: $5; 13 through 64 prints Price: $10; 65 or older prints Price: $7.

For the input 10 the output is:

Price: $5

Expected Output:

Price: $5
Topics:
If Statements
๐Ÿ“ฅ Auto-Input:
10\n
This input is automatically fed to your program's stdin
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (sysout, psvm, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.