18
1
using System;
2
3
public class Program
4
{
5
public static void Main()
6
{
7
// bool condition = true;
8
bool condition = false;
9
if (condition)
10
{
11
Console.WriteLine("The variable is set to true.");
12
}
13
else
14
{
15
Console.WriteLine("The variable is set to false.");
16
}
17
}
18
}
Cached Result