Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

17. ^MUST CONTAIN while() statement to ALLOW multiple input^ ****PLEASE INCLUDE COMMENTS IN CODE (so that I can understand why you did certain things)***** Write

17.

image text in transcribed

image text in transcribed

image text in transcribed

^MUST CONTAIN while() statement to ALLOW multiple input^

****PLEASE INCLUDE COMMENTS IN CODE (so that I can understand why you did certain things)*****

Write a program to simulate a bus operation. The bus departs from initial stop with certain amount of passengers. After that, the bus will stop three times before it hits final stop. For each stop, there will be some passengers getting on and off the bus. For every single passenger getting on the bus, a fixed amount of money will be charged. You will need to create a bus object based on each set of input, which will be described in detail in following instructions. Input You will be inputting more than one set of FOUR lines The first line contains a fixed route fare, and the number of passengers who get on the bus at the initial stop. For example: 1.50 4 means the bus fare is $1.50 per passenger, and there are 4 passengers getting on the bus at the first stop. After that, a bus stops at three bus stops before it hits the final stop. Each line of input represents one stop. The first number of input is the number of passengers who get on the bus, and the second one is the number of passengers who get off the bus. For example, 2 3 means at certain stop, 2 passengers get on the bus and 3 passengers get off the bus Important Note: We assume that passengers on board get off before others can get on, AND it's impossible for a bus to carry negative amount of passengers. Therefore, we set the following rule: whenever the number of passengers who get off the bus is greater than the number of passengers on board, we first ZERO OUT the passengers on bus, and then put others onto the bus. To illustrate this, assume the bus arrives certain stop with 3 passengers, user inputs is 2 5 Since 5 > 3, we first zero out the passenger, and then add 2 to the busload, so finally the number of passengers on the bus will be 2. Output There will be two numbers in your output. The first one is the number of passengers who are going to the final stop: the second one is the total amount of money collected on this ride. 2.0 4 2 0 3 6 2 1 1.5 3 0 2 6 4 2.20000e+01 3 1.35000e+01 Now that you know what this program is to do, let us get into more details of what you need to do Bus class 1) The Bus class should have at least three instance variables: a) a double variable to indicate the fixed route fare of the bus b) a double variable to indicate total amount of money the bus collected on certain ride c) a int variable to indicate the number of passengers currently on the bus 2) the bus class should have at least three methods: a) public BusDouble fare, int passenger) This is a constructor that sets the bus fare of the bus and the number of passengers at the initial stop b) public void stop (int on, int off) This method will be called at each atop to get passengers on and off the bus. Please refer to Isportant Note in Sample Input section for rules c) public String toString( that returns the output. Use the stance variabl s of the Bus class Main class The Main class should have a main method (public static void main(String [] args) {}) The main method should keep reading lines 1. // process the FIRST line of the set a. Read the first line and create a bus object 2. // process the following three lines of the set a. Read each line; get passengers on and off the bus. b. Details are provided in Inout section above 3. // print the output Write a program to simulate a bus operation. The bus departs from initial stop with certain amount of passengers. After that, the bus will stop three times before it hits final stop. For each stop, there will be some passengers getting on and off the bus. For every single passenger getting on the bus, a fixed amount of money will be charged. You will need to create a bus object based on each set of input, which will be described in detail in following instructions. Input You will be inputting more than one set of FOUR lines The first line contains a fixed route fare, and the number of passengers who get on the bus at the initial stop. For example: 1.50 4 means the bus fare is $1.50 per passenger, and there are 4 passengers getting on the bus at the first stop. After that, a bus stops at three bus stops before it hits the final stop. Each line of input represents one stop. The first number of input is the number of passengers who get on the bus, and the second one is the number of passengers who get off the bus. For example, 2 3 means at certain stop, 2 passengers get on the bus and 3 passengers get off the bus Important Note: We assume that passengers on board get off before others can get on, AND it's impossible for a bus to carry negative amount of passengers. Therefore, we set the following rule: whenever the number of passengers who get off the bus is greater than the number of passengers on board, we first ZERO OUT the passengers on bus, and then put others onto the bus. To illustrate this, assume the bus arrives certain stop with 3 passengers, user inputs is 2 5 Since 5 > 3, we first zero out the passenger, and then add 2 to the busload, so finally the number of passengers on the bus will be 2. Output There will be two numbers in your output. The first one is the number of passengers who are going to the final stop: the second one is the total amount of money collected on this ride. 2.0 4 2 0 3 6 2 1 1.5 3 0 2 6 4 2.20000e+01 3 1.35000e+01 Now that you know what this program is to do, let us get into more details of what you need to do Bus class 1) The Bus class should have at least three instance variables: a) a double variable to indicate the fixed route fare of the bus b) a double variable to indicate total amount of money the bus collected on certain ride c) a int variable to indicate the number of passengers currently on the bus 2) the bus class should have at least three methods: a) public BusDouble fare, int passenger) This is a constructor that sets the bus fare of the bus and the number of passengers at the initial stop b) public void stop (int on, int off) This method will be called at each atop to get passengers on and off the bus. Please refer to Isportant Note in Sample Input section for rules c) public String toString( that returns the output. Use the stance variabl s of the Bus class Main class The Main class should have a main method (public static void main(String [] args) {}) The main method should keep reading lines 1. // process the FIRST line of the set a. Read the first line and create a bus object 2. // process the following three lines of the set a. Read each line; get passengers on and off the bus. b. Details are provided in Inout section above 3. // print the output

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

Step: 3

blur-text-image

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

Beginning Databases With PostgreSQL From Novice To Professional

Authors: Richard Stones, Neil Matthew

2nd Edition

1590594789, 978-1590594780

More Books

Students also viewed these Databases questions

Question

3 How exchange rates are determined in currency markets.

Answered: 1 week ago

Question

What is the Definition for Third Normal Form?

Answered: 1 week ago

Question

Provide two examples of a One-To-Many relationship.

Answered: 1 week ago