81.3k views
5 votes
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.

1 Answer

6 votes

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\\',iteration,sum);

Step-by-step explanation:

User Selenia
by
5.6k points