Question: Rewrite the following code using a Repeat-Until structure instead of the Do-While structure. Make sure your code behaves identically. Incr := 3; Do Incr :=
Rewrite the following code using a "Repeat-Until" structure instead of the "Do-While" structure. Make sure your code behaves identically.
Incr := 3;
Do
Incr := Incr + 2
While (Incr != 100)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
