2
Reply

Loops problem #2

Ask a question
Prime b

Prime b

12y
1.3k
1
     Show the for statement for a loop that counts from 1,000 to 0 by –2.

       for (int index = 1000; index >= 0; index -= 2)
            {
                Console.WriteLine(index);
            }

if you run it begins decrement from 596

Answers (2)