← Back to Question List
C# Quiz #3
Output of a while Loop
What does this code print?
📄 Code
1int i = 5;2while (i > 2) {3 Console.Write(i);4 i--;5}
What does this code print?
1int i = 5;2while (i > 2) {3 Console.Write(i);4 i--;5}