int i = 10, j = 20;
if (i < j)
{
Console.WriteLine("i is less than j");
}
if (i > j)
{
Console.WriteLine("i is greater than j");
}
if (/*condition here*/)
{
//code here
}
using System;
namespace DecisionMaking
{
class Program
{
static void Main(string[] args)
{
/* local variable definition */
int a = 10;
/* check the boolean condition using if statement */
if (a < 20)
{
/* if condition is true then print the following */
Console.WriteLine("a is less than " + a); //output: a is less than 20
}
Console.ReadLine();
}
}
}
int a = 5;
int b = 10;
if (b > a) //true
{
b = b - a;
}
bool condition = true;
if(condition)
var t = "The condition its true";
else
var f = "The condition its false";
// We dont need to use the '{' because it's just 1 change
if (condition)
{
print("Yes");
}
else
{
print("No");
}
int time = 22;
if (time < 10)
{
Console.WriteLine("Good morning.");
}
else if (time < 20)
{
Console.WriteLine("Good day.");
}
else
{
Console.WriteLine("Good evening.");
}
int thing;
if (thing == "34")
{Console.WriteLine("Noice")}
bool isMale = false;
bool isTall = false;
if (isMale && isTall)
{
Console.WriteLine("You are a tall male");
} else if (isMale && !isTall)
{
Console.WriteLine("You are a short male");
}else if (!isMale && isTall)
{
Console.WriteLine("You are not male but you are tall");
}else
{
Console.WriteLine("You are not male and you are not tall");
}
Console.ReadLine();
if (title == "User greeting" || "User name") {do stuff}
if (time <10)
{
Console.WriteLine("Good morning.");
}
else
{
Console.Writeline("Hatdog");
}
string target = "www.testforranorex.com";
if (true) // if something is true or false
{
//code
}
else if (false) // something else if something is true or false
{
//code
}
else // if something is true or not
{
//code
}
if (boolean-expression)
{
// statements executed if boolean-expression is true
}
using System;
namespace Conditional
{
class IfStatement
{
public static void Main(string[] args)
{
int number = 2;
if (number < 5)
{
Console.WriteLine("{0} is less than 5", number);
}
Console.WriteLine("This statement is always executed.");
}
}
}
if(x != null)
{
return true
}
if(a == 2) {
a = 3
}