24
1
using System;
2
3
public class IfStatementProgram
4
{
5
public static void Main()
6
{
7
int a=10;
8
int b=20;
9
10
//if condition 1
11
if(a < 20)
12
{
13
//code to be executed if condition is met true
14
Console.WriteLine("a is less than 20");
15
}
16
17
// if condition 2
18
if(b < 20)
19
{
20
//this will not be printed as b = 20 and not less than 20
21
Console.WriteLine("b is less than 20");
22
}
23
}
24
}
Cached Result