Question: THIS IS FOR C++. Please help!! In the main function, define an array that can contain four int values. Also define an int named sum.
THIS IS FOR C++. Please help!!
In the main function, define an array that can contain four int values. Also define an int named sum.
Write a function named getData which asks the user for the data and puts it in the array. Write a function named computeTotal which adds the data in the array and returns the sum. Write a function named printAll which takes the array and the sum as arguments.
In the main function, call the getData function. Then in the main function, call the computeTotal function. Then in the main function, call the printAll function.
Print the results in the formats shown in the following format:
4 + 6 + 9 + 12 = 31
Test the program twice with the values: 4, 6, 9, and 12. then with the values: 1, 7, 9, and 15.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
