For this assignment, you will be adding additional logic to handle a few additional properties of the order, the simple validation of properties, and the total cost of the order, including sales tax. You will implement these new capabilities using methods

business

Description

For this assignment, you will be adding additional logic to handle a few additional properties of the order, the simple validation of properties, and the total cost of the order, including sales tax. You will implement these new capabilities using methods that you create. Define the method called getStringInput( ) using the method header: private static String getStringInput(String prompt) This method must do the following: Use Scanner class to take the input Check the value that is returned. If the value is null, the program should terminate. If the value is a non-empty string, that string should be returned as the value of the method. Otherwise, this request sequence should be repeated up to 3 times. If the customer has not entered a valid input by then, the program should make an appropriate comment and then terminate. Replace your existing code that requests the customer's name, return status, and color with calls to getStringInput( ).


 Add a request for quantity, or the number of items that the customer wishes to order. Use getStringInput( ) to obtain this value from the customer. You will need to convert the quantity string into an int value. You should use the Integer.parseInt( ) method to accomplish this. Create a method called totalCost( ) that calculates the total cost of an order. Use the following header: private static double totalCost(int number, double cost, double salesTaxRate) The number is the number of items (the quantity), the cost is the unit cost (the cost of a single item), and sales tax is the sales tax rate. You should select a reasonable value for the unit cost (e.g., $10.00). You should select a reasonable value for the sales tax rate (e.g., 7%). Use your totalCost( ) method to calculate the total cost of the order.


Related Questions in business category


Disclaimer
The ready solutions purchased from Library are already used solutions. Please do not submit them directly as it may lead to plagiarism. Once paid, the solution file download link will be sent to your provided email. Please either use them for learning purpose or re-write them in your own language. In case if you haven't get the email, do let us know via chat support.