Answers for "how to write a program in c# with if statement"

C#
1

if c#

int a = 5;
int b = 10;

if (b > a) //true
{
  b = b - a;
}
Posted by: Guest on September-25-2021
1

c# if

int x;
int y;

if ( x == y)
	{
  		Console.WriteLine("x and y is equal");
	}
else
	{
  		Console.WriteLine("x and y is not equal");
	}

// Same, but shorter ( and harder XD )
Console.WriteLine($"x and y {(x == y? "is equal" : "is not equal")}");
Posted by: Guest on March-27-2021

Code answers related to "how to write a program in c# with if statement"

C# Answers by Framework

Browse Popular Code Answers by Language