Question: (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
Get step-by-step solutions from verified subject matter experts
