24
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 greater than j");
12
}
13
14
if (i < j)
15
{
16
Console.WriteLine("i is less than j");
17
}
18
19
if (i == j)
20
{
21
Console.WriteLine("i is equal to j");
22
}
23
}
24
}
Cached Result
i is less than j