CJCoding With Joseph
← Back to Question List

Select topics to narrow your question pool, then enable Random to jump to a random question matching your filters.

Topics:
C# Quiz #44

do-while Runs at Least Once

mediumLoops

What does this code print?

📄 Code

1int i = 5;
2do {
3 Console.Write(i);
4 i++;
5} while (i < 3);