Write down the output for the following for (int i = 0; i <= 10; i++) { if (i % 2 == 0) { Console.WriteLine(i / 2); continue; Console.WriteLine(i); } if (i / 8 == 1) { break; Console.WriteLine(i); } Console.WriteLine(i); }
2 Answers
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.