Question: Write C++ statements to: 1) Declare two arrays named myArraya and yourArray with capacity to store up to 100 whole numbers. 2) Fill myArray according
Write C++ statements to:
1) Declare two arrays named myArraya and yourArray with capacity to store up to 100 whole numbers.
2) Fill myArray according to the following rules: A) the first element of the array gets a value equal to the current index B) the rest of the elements get the value of the previous element plus a value equal to the current index
3) Fill yourArray with the values from myArray in reverse order. Declare any additional variables you need.
Example: 0 1 3 6 10 15 21 28 36 45 55 66 78 91 105 120 136 153 171 190 190 171 153 136 120 105 91 78 66 55 45 36 28 21 15 10 6 3 1 0
Note: you dont have to print the arrays, the example is just for you to use it as a reference.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
