Question
Design and implement an application file that does the following: uses a 2 dimensional array to store the sales data(see sample data and output below)
Design and implement an application file that does the following: uses a 2 dimensional array to store the sales data(see sample data and output below) uses 1 dimensional arrays for the following: hold the names of the stores hold the names of the months hold the total sales for each store (city) hold the monthly totals creates and calls 4 methods that perform the following tasks: initializes these arrays using initialization lists: 2D array with all the sales data (but not the totals), store (city) names, month names calculates the total sales for each city (and declares the size of this array) calculates the monthly totals (and declares the size of this array) prints out the results (see the sample output below). If you want help getting the output to line up, use printf (or ask you instructor about printf) Sample Data: This is a sample data set. The code you write must work for ANY data set. Chilliwack Kamloops Kelowna Nanaimo Surrey Vancouver Victoria 400 500 500 600 500 600 600 800 800 800 900 900 700 700 700 900 900 1000 500 600 700 800 700 700 800 700 800 700 900 800 1000 1100 1200 1300 1400 1400 900 900 900 1000 1100 1100 Its a java language
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