Question: 5. Correct the following code so that it correctly sets the value of each element of myList to the index of the element. int myList[10];
5. Correct the following code so that it correctly sets the value of each element of myList to
the index of the element.
int myList[10];
for(int i = 1; i <= 10; i--)
myList[i] = [i];
6. Write C++ statements to define and initialize the following arrays.
a. Array heights of 10 components of type double. Initialize this array to the
following values: 5.2, 6.3, 5.8, 4.9, 5.2, 5.7, 6.7, 7.1, 5.10, 6.0.
b. Array weights of 7 components of type int. Initialize this array to the following
values: 120, 125, 137, 140, 150, 180, 210.
c. Array specialSymbols of type char. Initialize this array to the following values:
'$', '#', '%', '@', '&', '! ', '^'.
d. Array seasons of 4 components of type string. Initialize this array to the
following values: "fall", "winter", "spring", "summer".
7. What is the output of the following C++ code?
#include
using namespace std;
int main()
{
int beta[7] = {3, 5};
for(int i = 2; i < 7; i++)
{
beta[i] = 3 * i + 2;
beta[i - 1] = beta[i - 1] + beta[i];
beta[i - 2] = beta[i - 2] + beta [i - 1];
}
for(int i = 0; i < 7; i++)
cout << beta[i] << " ";
cout << endl;
return 0;
}
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
