Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

C# Sharp exercises: Find the largest of three numbers


C# Sharp Conditional Statement : Exercise-8 with Solution

Write a C program to find the largest of three numbers.

C# Sharp: Find the largest of three numbers.

Sample Solution:-

C# Sharp Code:

using System;  
public class Exercise8  
{  
    public static void Main()
{
    int num1, num2, num3;
    Console.Write("\n\n");
    Console.Write("Find the largest of three numbers:\n");
    Console.Write("------------------------------------");
    Console.Write("\n\n");

    Console.Write("Input the 1st number :");
    num1 = Convert.ToInt32(Console.ReadLine());
    Console.Write("Input the  2nd number :");
    num2 = Convert.ToInt32(Console.ReadLine());
    Console.Write("Input the 3rd  number :");
    num3 = Convert.ToInt32(Console.ReadLine());
 
  if (num1 > num2)
    {
        if (num1 > num3)
        {
            Console.Write("The 1st Number is the greatest among three. \n\n");
        }
        else
        {
            Console.Write("The 3rd Number is the greatest among three. \n\n");
        }
    }
    else if (num2 > num3)
        Console.Write("The 2nd Number is the greatest among three \n\n");
    else
        Console.Write("The 3rd Number is the greatest among three \n\n");
}
}

Sample Output:

Find the largest of three numbers:                                                                            
------------------------------------                                                                                                  
Input the 1st number :20                                                                                      
Input the  2nd number :25                                                                                     
Input the 3rd  number :15                                                                                     
The 2nd Number is the greatest among three 

Flowchart:

Flowchart: Find the largest of three numbers.

C# Sharp Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a C# Sharp program to accept the height of a person in centimeter and categorize the person according to their height.
Next: Write a C program to accept a coordinate point in an XY coordinate system and determine in which quadrant the coordinate point lies.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.