Answered step by step
Verified Expert Solution
Question
1 Approved Answer
(Java) Write a program that computes the fare on the New York Transit system given two inputs from the user: The zone number. The passenger
(Java)
Write a program that computes the fare on the New York Transit system given two inputs from the user:
- The zone number.
- The passenger type.
Your prompts to the user must be:
Enter zone number :
Enter adult or child :
The fare on Copenhagen Transit is specified as follows:
- If the zone is 3 or smaller and the ticket type is "adult," the fare is 24.0.
- If the zone is 3 or smaller and the ticket type is "child," the fare is 11.7.
- If the zone is 4 and the ticket type is "adult," the fare is 34.6.
- If the zone is 4 or 5 and the ticket type is "child," the fare is 22.0.
- If the zone is 5 and the ticket type is "adult," the fare is 47.0.
- If the zone is greater than 5, the fare is -1.00 (since your calculator does not handle inputs that high).
Your output must be of the format:
The fare for adultOrChild to zone number zoneNumber is fare.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started