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 and lowest values from three integer values

C# Sharp Basic: Exercise-39 with Solution

Write a C# program to find the largest and lowest values from three integer values.

C# Sharp Exercises: Find the largest and lowest values from three integer values

Sample Solution:

C# Sharp Code:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
public class Exercise39 {
static void Main(string[] args)
        {
Console.WriteLine("\nInput first integer:");  
int x = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Input second integer:");  
int y = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Input third integer:");  
int z = Convert.ToInt32(Console.ReadLine());
              
Console.WriteLine("Largest of three: "+Math.Max(x, Math.Max(y, z)));
Console.WriteLine("Lowest of three: "+Math.Min(x, Math.Min(y, z)));
        }
}

Sample Output:

Input first integer:                                                   
15                                                                     
Input second integer:                                                  
25                                                                     
Input third integer:                                                   
30                                                                     
Largest of three: 30                                                   
Lowest of three: 15

Flowchart:

Flowchart: C# Sharp Exercises - Find the largest and lowest values from three integer values

C# Sharp Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a C# program to get a new string of two characters from a given string. The first and second character of the given string must be "P" and "H", so PHP will be "PH".
Next: Write a C# program to check the nearest value of 20 of two given integers and return 0 if two numbers are same.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.