Practice
Ticket Price by Age Band
2021/Feb/Mar·Variant 2
EASYSelection
A cinema prices tickets by age: under 5 is Free, 5–12 is Child ($5), 13–64 is Adult ($10), 65 and over is Senior ($6). Read an age and output the correct category and price.
Input: One integer age.
Output: Free, Child: $5, Adult: $10, or Senior: $6.
Example:
Input: 10
Output: Child: $5
Premium is coming soon. All grading features are currently unlocked.
Sample Test Cases
Test 1: Under 5
Inputs: 3
Expected: Free
Test 2: Child band
Inputs: 10
Expected: Child: $5
Test 3: Adult band
Inputs: 30
Expected: Adult: $10