Question: How many times will the following loops execute. Explain. b. int i = 0; while(i>-5){ i--; } c. int i = 20; while(i>=5){ i--; }
How many times will the following loops execute. Explain. b. int i = 0; while(i>-5){ i--; } c. int i = 20; while(i>=5){ i--; } d. int i = 2; while(i>5){ i = i * i; } e. int i = 75; while(i>5){ i = i / 5; }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
