Online C++ Compiler: https://www.onlinegdb.com/online_c++_compiler Assignment Goal: This assignment has 3 parts. PART 1 - Write a program that summarizes a dataset. The program should complete the...

Online C++ Compiler: https://www.onlinegdb.com/online_c++_compiler Assignment Goal: This assignment has 3 parts. PART 1 - Write a program that summarizes a dataset. The program should complete the following steps: 1. Ask the user to enter 10 values 2. Save the values into an array 3. Calculate the average of the values. To calculate the average, create a function called "Calculate Average and pass the array into the function. Perform the average calculation within the function. PART 2- Add code to Part 1. Write a function that accepts an array and prints the elements out in REVERSE ORDER, so that the last number added is the first element printed out. Hint: You will have to adjust your For Loop. PART 3 - Print out the multiplication times tables for the numbers 1-4 in a 4x4 array. See the example output for a 3x3 array below, and adapt your output to print the result of a 4x4 array. Hint: To make your code print out the grid, use the "\t" for separating elements by tabs, and the end for separating rows. 123 246 369

May 19, 2022
SOLUTION.PDF

Get Answer To This Question

Submit New Assignment

Copy and Paste Your Assignment Here