Question
1. An express bus company has trips from Kuala Lumpur to six cities in Malaysia. The cities are referred to by number, 1 to 6.
1. An express bus company has trips from Kuala Lumpur to six cities in Malaysia. The cities are referred to by number, 1 to 6. The price for a trip to each of the cities is as follows:
City | 1 | 2 | 3 | 4 | 5 | 6 |
Price (RM) | 56.80 | 105.70 | 93.50 | 155.00 | 87.50 | 73.00 |
Write a program that can compute the total price of tickets that a customer orders. The program should prompt the user for the destination city number and the number of tickets desired. If the user enters an invalid city number, the program should display an error message and repeat asking the city number until a valid input is entered. Finally, the program should display the total price of the tickets ordered. You must use a one-dimensional array to store the ticket price table.
2. Rewrite the program in Question 1 above so that it can process any number of customers. After processing a customer, the program will prompt the user whether to continue with the next customer or not. The program will process the next customer if the user indicates that he/she wants to continue. If there is no more customer to process, the program should display the total number of tickets sold to each of the six cities, the total price of the tickets sold to each city, and the grand total prices of all the tickets ordered. You must use a one-dimensional array to store the number of tickets sold to each city.
IN JAVA
NEED ANSWER FOR QUESTION 2 ONLY
NEED ANSWER FOR QUESTION 2 ONLY
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