if statement string c# code example
Example 1: if statement c#
if (condition)
{
print("Yes");
}
else
{
print("No");
}
Example 2: if c#
int time = 22;
if (time < 10)
{
Console.WriteLine("Good morning.");
}
else if (time < 20)
{
Console.WriteLine("Good day.");
}
else
{
Console.WriteLine("Good evening.");
}