Question
3. Write C++ statements to do the following: a. Declare an array beta of 20 components of type double. b. Initialize each component of the
3. Write C++ statements to do the following:
a. Declare an array beta of 20 components of type double.
b. Initialize each component of the array beta to 0.
c. Output the value of the fifth component of the array beta.
d. Set the value of the ninth component of the array beta to 70.50.
e. Set the value of the twelfth component of beta to four times the value of the eighth
component of beta minus 15.
f. Use a for loop to output the value of a component of beta if its index is a multiple of 3.
g. Output the value of the last component of beta.
h. Output the value of beta so that ten components per line are printed.
4. What is stored in myList after the following C++ code executes?
double myList[5];
myList[0] = 3.0;
myList[1] = 4.0;
for(int i = 2; i < 5; i++)
{
myList[i] = myList[i - 1] * myList[i - 2];
if (i > 3)
myList[i] = myList[i] / 4;
}
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started