Answered You can hire a professional tutor to get the answer.

QUESTION

What is the output of the following C# code?

What is the output of the following C# code?

            int x, y;

            x = 2;

            while (x <= 6)

            {

                y = 1;

                while (y < 3)

                {

                    Console.Write(x);

                    y = y + 1;

                }

                Console.WriteLine();

                x = x + 2;

            }

Show more
LEARN MORE EFFECTIVELY AND GET BETTER GRADES!
Ask a Question