Question
Your program must provide a menu to the user. This menu should list five different products of your choice. Once the user selects one product, they should specify which state they are located. The state choices should include CT, VT, WI, CA and WA. State taxes vary for each state (7.5%, 7.8%, 6.8%, 7.2% and 6.4%, respectively). The user should then specify the desired number of cases (assume there are 12 items per case). The appropriate state tax should be added to the total cost of the product (Item quantity multiplied by unit price). Next, using the Math class random method, generate 20 numbers ranging between 1-100. Ensure there are no duplicates.
Display the following to the user.
• Name of the product selected
• Number of cases
• Number of items
• Subtotal (units * price per unit)
• State tax (with the percentage and state abbreviation in parentheses),
• Total cost (subtotal plus state tax)
• The table of random numbers displayed in a table of five numbers per row
Requirements:
You need to use at least one repetition statement, one selection statement, Scanner class, at least one array and the random method in this code. For generating random numbers you should use the random () static method of class Math. It returns a double so you will need to cast it as an integer. For example,
number = (int) ( range * Math.random () ) + 1;
Solution Preview
This material may consist of step-by-step explanations on how to solve a problem or examples of proper writing, including the use of citations, references, bibliographies, and formatting. This material is made available for the sole purpose of studying and learning - misuse is strictly forbidden.
import java.util.Scanner;public class Main {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
String [] products = {"banana", "apple", "lemon", "coconut", "mango"};
double [] price = {0.2, 0.5, 0.15, 0.62, 0.7};
String [] states = {"CT", "VT", "WI", "CA", "WA"};
double [] stateTaxes = {7.5, 7.8, 6.8, 7.2, 6.4};
Scanner console = new Scanner(System.in);
System.out.println(" Product\tPrice($)");
int product = getSelection(products, price, console);...