Question: Write a pseudocode based on the program(source code) below. #include #include using namespace std; int main(){ double previous, current, i; double product; previous = -20;

Write a pseudocode based on the program(source code) below.

#include #include using namespace std;

int main(){ double previous, current, i; double product; previous = -20; current = -10; product = 1; i = 1; while((current-previous)>0.000000000000001){ product = product*(2*i)*(2*i)/((2*i-1)*(2*i+1)); i = i + 1; previous = current; current = 2*product ; } cout<<"Work of student 3" << endl; cout<<"Last value of i = " << (int)i << endl; cout<

return 0;

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!