Question: Convert the following do. . .while loop into a for loop and a while loop. Did the logic change? If so, explain. int counter =
Convert the following do. . .while loop into a for loop and a while loop. Did the logic change? If so, explain.
int counter = 100;
do
{
Console.WriteLine(counter);
counter--;
}
while (counter > 0);
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
