Answered step by step
Verified Expert Solution
Link Copied!

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

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Professional Microsoft SQL Server 2014 Administration

Authors: Adam Jorgensen, Bradley Ball

1st Edition

111885926X, 9781118859261

More Books

Students also viewed these Databases questions

Question

2. Identify issues/causes for the apparent conflict.

Answered: 1 week ago