Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Write a program that computes the fare on the Copenhagen Transit system given two inputs from the user: The zone number: 1 or more
Write a program that computes the fare on the Copenhagen Transit system given two inputs from the user: The zone number: 1 or more The passenger type: adult or child 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 2 or smaller and the ticket type is "adult," the fare is 23.0. . If the zone is 2 or smaller and the ticket type is "child," the fare is 11.5. . If the zone is 3 and the ticket type is "adult," the fare is 34.5. If the zone is 3 or 4 and the ticket type is "child," the fare is 23.0. . If the zone is 4 and the ticket type is "adult," the fare is 46.0. . If the zone is greater than 4, the fare is -1.00 (since your calculator does not handle inputs that high). Your output must be in the format: The fare for adultorChild to zone number zoneNumber is fare. A sample run of the program with inputs 3 and adult must look like: Enter zone number: 3 Enter adult or child: adult The fare for adult to zone number 3 is $34.50 Please note that your class should be named Copenhagen Transit. Write a program that asks the user for their age measured in days. The program must then compute the person's age in years and finally output one of the message that follow: (Note: For simplicity the program can ignore leap years and assume that all years have 365 days) If the user is: Exactly 1 year old or younger, print: "You are an infant" over 1 year old and is 3 years old or younger, print: "You are a toddler" over 3 years old and is 12 years old or younger, print: "You are a child" over 12 years old and is 19 years old or younger, print: "You are a teenager" over 19 years old and is 21 years old or younger, print: "You are a young adult" over 21 years old and is 50 years old or younger, print: "You are an adult" over 50 years old and is 65 years old or younger, print: "You are middle aged" over 65 years old, print: "You are a senior citizen" For three sample runs where the user enters 800, 10950, and 25550 the console screens must look as follows: Enter an age in number of days : 800 You are a toddler Enter an age in number of days : 10950 You are an adult Enter an age in number of days : 25550 You are a senior citizen Please note that your class should be named AgeLabel.
Step by Step Solution
★★★★★
3.52 Rating (152 Votes )
There are 3 Steps involved in it
Step: 1
Public class Main Public static void mainString Ja...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