Q:

Write C# Program to find the Largest among Three Variables using Nested if

0

Write C# Program to find the Largest among Three Variables using Nested if.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

I have used Visual Studio 2012 for debugging purpose. But you can use any version of visul studio as per your availability..

using System;
 
namespace csharpprograms
{
    class Program
    {
        static void Main(string[] args)
        {
            int num1, num2, num3;
            Console.WriteLine("Enter three numbers: \n");
 
            num1 = Convert.ToInt32(Console.ReadLine());
            num2 = Convert.ToInt32(Console.ReadLine());
            num3 = Convert.ToInt32(Console.ReadLine());
 
            if (num1 >= num2)
            {
                if (num1 >= num3)
                    Console.WriteLine(num1+" is the largest number");
                else
                    Console.WriteLine(num3 + " is the largest number");
            }
 
            else if (num2 >= num3)
                Console.WriteLine(num2 + " is the largest number");
 
            else
                Console.WriteLine(num3 + " is the largest number");
 
            Console.ReadLine();
 
 
        }
    }
}

Result:

Enter three numbers: 

10

20

30

30 is the largest number

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Write C# Program to check leap year using conditio... >>
<< Write C# Program to Find the Largest Number using ...