22
1
using System;
2
3
public class Program
4
{
5
public static void Main()
6
{
7
int i = 10, j = 20;
8
9
if (i == j)
10
{
11
Console.WriteLine("i is equal to j");
12
}
13
else if (i > j)
14
{
15
Console.WriteLine("i is greater than j");
16
}
17
else if (i < j)
18
{
19
Console.WriteLine("i is less than j");
20
}
21
}
22
}
Cached Result
Which country was the participate?
>