180k views
1 vote
Which of the following loops (if any) display the numbers 1 through 5 (inclusive)? Assume that Console.Write() outputs information to a console window without a newline character

Which of the following loops (if any) display the numbers 1 through 5 (inclusive)? Assume-example-1

1 Answer

6 votes

Answer:

Step-by-step explanation:

for (int i = 1; i <= 5; i++)

{

Console.Write(i);

}

User Keflavich
by
8.0k points