How to find the Minimum of Two Numbers in C# - Step by Step Examples
How to find the Minimum of Two Numbers in C# ?
Answer
To find the minimum of two numbers in C#, you can use the Math.Min method.
✐ Examples
1 Minimum of Two Numbers
In this example,
- We declare two variables
a
andb
and assign values to them. - We use the
Math.Min
method to find the minimum ofa
andb
. - We display the minimum value.
C# Program
// Minimum of Two Numbers
using System;
public class Program
{
public static void Main()
{
int a = 10;
int b = 15;
int min = Math.Min(a, b);
Console.WriteLine($"Minimum of {a} and {b} is: {min}");
}
}
Output
Minimum of 10 and 15 is: 10
Summary
In this tutorial, we learned How to find the Minimum of Two Numbers in C# language with well detailed examples.