Question: Columbia College-ca 225 Lab Tasks: Write a C++ program that calculates the sum of a set of numbers. Your program should follow the below algorithm:
Columbia College-ca 225 Lab Tasks: Write a C++ program that calculates the sum of a set of numbers. Your program should follow the below algorithm: Prompt the user to enter the number of values to be calculated Create a dynamic array of that size, called dArray1 Repeatedly prompt the user to enter values until the array is full Calculate the sum of the number values show the sum of the values in dArray1 Create a new dynamic array dArray, with double size Copy the values from dArray1 to dArray2 Enter new values into the 2nd half of dArray2 Calculate the sum of the number values in the new dArray2 (See below, in two solutions) Show the sum of the values in dArray2 Delete the two dynamic arrays before terminating the program Implementation options 1) Solution 1: create functions for calculating sum of the values in an array, iteratively, for dArray1 2) Solution 2: create functions for calculating sum of the values in an array, recursively, for dArray2
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
