C++ Programming: I need help writing a void function that prints sales per product per period using 3 for loops. Please see my code below ... not sure how to write the function. But this is what I've got so far. Please leave main alone. What the output should look like is posted below the code. Thanks :)  #include #include #include using namespace std; int const LOCATION_DIM_SZ = 2; int const TIME_DIM_SZ = 2; int const PRODUCT_DIM_SIZE = 3; string Location[] = { "FL", "TX" }; string Period[] = { "Jan", "FEB" }; string Product[] = { "iPhone","iPad","MacBookPro" }; /*1*/ void printSalesPerProductPerPeriod(double sales[LOCATION_DIM_SZ][TIME_DIM_SZ][PRODUCT_DIM_SIZE]) { int i(0), j(0), k(0); double salesPerProductPerPeriod = 0; cout << "Total Sales per Product per Period" << endl; cout << "====================================" << endl; for (i = 0; i < 3; i++) { for (j = 0; j < 2; j++) { salesPerProductPerPeriod = 0; for (k = 0; k < 2; k++) { salesPerProductPerPeriod += sales[j][k][i]; } cout << "Total sales for " << Product[i] << " in " << Period[j] << " = $" << salesPerProductPerPeriod << " millions" << endl; } } cout << endl; cout << "===================================================" << endl; } int main(int argc, const char* argv[]) { double sales[LOCATION_DIM_SZ][TIME_DIM_SZ][PRODUCT_DIM_SIZE] = { 0 };   sales[0][0][0] = 45; sales[0][0][1] = 8; sales[0][0][2] = 4; sales[0][1][0] = 35; sales[0][1][1] = 10; sales[0][1][2] = 5; sales[1][0][0] = 75; sales[1][0][1] = 15; sales[1][0][2] = 13; sales[1][1][0] = 45; sales[1][1][1] = 17; sales[1][1][2] = 23.1; printSalesPerProductPerPeriod(sales); return 0; } DESIRED OUTPUT: Total Sales per Product per Period ==================================== Total Sales for iPhone in Jan =$ 120.00 millions Total Sales for iPhone in FEB =$ 80.00 millions Total Sales for iPad in Jan =$ 23.00 millions Total Sales for iPad in FEB =$ 27.00 millions Total Sales for MacBookPro in Jan =$ 17.00 millions Total Sales for MacBookPro in FEB =$ 28.10 millions ===================================================

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter6: Modularity Using Functions
Section6.4: A Case Study: Rectangular To Polar Coordinate Conversion
Problem 9E: (Numerical) Write a program that tests the effectiveness of the rand() library function. Start by...
icon
Related questions
Question

C++ Programming:

I need help writing a void function that prints sales per product per period using 3 for loops. Please see my code below ... not sure how to write the function. But this is what I've got so far. Please leave main alone. What the output should look like is posted below the code. Thanks :) 

#include <iostream>
#include <string>
#include <iomanip>

using namespace std;

int const LOCATION_DIM_SZ = 2;
int const TIME_DIM_SZ = 2;
int const PRODUCT_DIM_SIZE = 3;

string Location[] = { "FL", "TX" };
string Period[] = { "Jan", "FEB" };
string Product[] = { "iPhone","iPad","MacBookPro" };

/*1*/

void printSalesPerProductPerPeriod(double sales[LOCATION_DIM_SZ][TIME_DIM_SZ][PRODUCT_DIM_SIZE]) {

int i(0), j(0), k(0);
double salesPerProductPerPeriod = 0;

cout << "Total Sales per Product per Period" << endl;
cout << "====================================" << endl;
for (i = 0; i < 3; i++) {
for (j = 0; j < 2; j++) {
salesPerProductPerPeriod = 0;
for (k = 0; k < 2; k++) {
salesPerProductPerPeriod += sales[j][k][i];
}
cout << "Total sales for " << Product[i] << " in " << Period[j] << " = $" << salesPerProductPerPeriod << " millions" << endl;

}

}


cout << endl;
cout << "===================================================" << endl;

}

int main(int argc, const char* argv[]) {


double sales[LOCATION_DIM_SZ][TIME_DIM_SZ][PRODUCT_DIM_SIZE] = { 0 };

 

sales[0][0][0] = 45;
sales[0][0][1] = 8;
sales[0][0][2] = 4;
sales[0][1][0] = 35;
sales[0][1][1] = 10;
sales[0][1][2] = 5;
sales[1][0][0] = 75;
sales[1][0][1] = 15;
sales[1][0][2] = 13;
sales[1][1][0] = 45;
sales[1][1][1] = 17;
sales[1][1][2] = 23.1;

printSalesPerProductPerPeriod(sales);

return 0;

}

DESIRED OUTPUT:

Total Sales per Product per Period
====================================
Total Sales for iPhone in Jan =$ 120.00 millions
Total Sales for iPhone in FEB =$ 80.00 millions
Total Sales for iPad in Jan =$ 23.00 millions
Total Sales for iPad in FEB =$ 27.00 millions
Total Sales for MacBookPro in Jan =$ 17.00 millions
Total Sales for MacBookPro in FEB =$ 28.10 millions

===================================================

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Knowledge Booster
Types of Function
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr