public static void Main()
LargestAndSmallestNumber(70,0,24);
public static void IsOddOrEven(int number)
{ Console.WriteLine( "Number is Even" );
Console.WriteLine( "Number is Odd" );
public static void LargestNumber(int a, int b, int c)
Console.WriteLine( "Largest Number is " + a);
{Console.WriteLine( "Largest Number is " + c);
{ Console.WriteLine("Largest Number is "+ b );
{Console.WriteLine( "Largest Number is "+ c);
public static void LargestAndSmallestNumber(int a, int b, int c)
Console.WriteLine( "Largest Number is " + a);
{Console.WriteLine( "Largest Number is " + c);
{ Console.WriteLine("Largest Number is "+ b );
{Console.WriteLine( "Largest Number is "+ c);
Console.WriteLine( "Smallest number is "+a);
{Console.WriteLine( "Smallest number is "+c);
{ Console.WriteLine( "Smallest number is "+b);
{Console.WriteLine( "Smallest number is "+c);
public static float Division(float a,float b)
Console.WriteLine("Undefined");
Console.WriteLine("Division: "+ a + "/" + b + "=" + result );
public static int Addition(int a,int b)
Console.WriteLine("ADDITION: "+ a + "+" + b + "=" + result );
public static int Subtraction(int a,int b)
Console.WriteLine("Subtract: "+ a + "-" + b + "=" + result );