What will be the output of the following C# code?
static void Main(string[] args)
{
int x;
for (x = 1; x <= 3; x++)
{
int j = 1;
do
{
j++;
}while (x % j == 2);
Console.WriteLine(x + " " + j);
}
Console.ReadLine();
}
static void Main(string[] args)
{
int x;
for (x = 1; x <= 3; x++)
{
int j = 1;
do
{
j++;
}while (x % j == 2);
Console.WriteLine(x + " " + j);
}
Console.ReadLine();
}A. 1 12 1 3 1
B. 1 12 13 1
C. 12 22 32
D. 11 21 31
Answer: Option C

Join The Discussion