Question: Given the following program: #include using namespace std; int main() { int i; int value = 3; for (i = 0; i < 5; i++)

Given the following program:

#include

using namespace std;

int main()

{

int i;

int value = 3;

for (i = 0; i < 5; i++)

value = value * (i + 1) + i;

cout << "value = " << value << endl;

return 0;

}

Rewrite the program and use while loop instead of the for loop. The new program should have the same output.

Please write comments throughout the program to illustrate your understanding.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!