Menu
×
×
Correct!
Exercise:Print "1" if
int x = 50;
int y = 50;
if (x == y)
{
Console.WriteLine("1");
}
else if (x > y)
{
Console.WriteLine("2");
}
else
{
Console.WriteLine("3");
}
Not CorrectClick here to try again. Correct!Next ❯int x = 50; int y = 50;(x y) { Console.WriteLine("1"); } (x y) { Console.WriteLine("2"); } { Console.WriteLine("3"); } |