Answered step by step
Verified Expert Solution
Question
1 Approved Answer
can i get help with this :( JAVA CODE Question 2. (30 points) A supermarket wants to keep statistical data about its customers. For that
can i get help with this :(
JAVA CODE
Question 2. (30 points) A supermarket wants to keep statistical data about its customers. For that purpose, they want you to write the following java program: a) (10 pts.) In this first part your code will prompt the cashier to enter all names and prices. Your code will take names to a string array list and prices to double array list. (Hint: Because of a Java bug, you may need to use two scanner objects, one for string and char input, and one for double input) b) (10 pts.) Write a method to calculate the average, and standard deviation of the customer prices. This method takes the prices as input and prints the average and standard deviation. Average = (price 1 + price2 + ...+priceN)/N (Total number of customers). Standard deviation = sqrt ((price1 - average)2 + (price2 - average)2 + ..+ (priceN-average)2/N (Total number of customers)). c) (10 pts.) Sort customer names alphabetical order (from "A" to "Z"). Do not forget to change their prices' position according to new ordering 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