Problem

Use the sales array to answer Review Questions 3 through 7. The array was declared using t...

Use the sales array to answer Review Questions 3 through 7. The array was declared using the int sales[5] = {10000, 12000, 900, 500, 20000}; statement.

Which of the following will correctly add the number 100 to each variable in the sales array? The x variable was declared using the int x = 0; statement.

a. while (x <= 4)

x += 100;

//end while

b. while (x <= 4)

{

sales = sales + 100;

x += 1;

} //end while

c. while (sales < 5)

{

sales[x] += 100;

} //end while

d. while (x <= 4)

{

sales[x] += 100;

x += 1;

} //end while

Step-by-Step Solution

Request Professional Solution

Request Solution!

We need at least 10 more requests to produce the solution.

0 / 10 have requested this problem solution

The more requests, the faster the answer.

Request! (Login Required)


All students who have requested the solution will be notified once they are available.
Add your Solution
Textbook Solutions and Answers Search