Using a while loop, write a code that will continue to calculate the following equation until the solution gets to be above 100, x will start at zero. What is the final solution and how many iterations does it take to complete (prob05) as a row vector.

Respuesta :

Answer:

prob05.m

clc

x=0;

sum=0;

iteration=0;

while (sum<100)

x=2*x+1;

sum=sum+x;

x=x+1;

iteration=iteration+1;

end

fprintf('total iteraton take to sum greater than 100 is %d and sum becomes %d\n',iteration,sum);

Explanation:

ACCESS MORE