Min |
Minimum |
---|---|
Math | |
C# (C Sharp) | System |
Syntaxe
static decimal Min(decimal a,decimal b) static double Min(double a,double b) static float Min(float a,float b) static int Min(int a,int b) static long Min(long a,long b) static sbyte Min(sbyte a,sbyte b) static short Min(short a,short b) |
Paramètres
Nom | Description |
---|---|
a, b | Ces paramètres permettent d'indiquer l'expression contenant le nombre à comparer. |
Description
Ces méthodes retournent la plus petite valeur entre les deux paramètres.
Exemple
Voici un exemple permet d'afficher les plus petites valeurs :
Essayer maintenant !
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
-
- namespace min
- {
- class Program
- {
- static void Main(string[] args)
- {
- Console.WriteLine("MIN(5,-18)=" + Math.Min(5, -18));
- Console.WriteLine("MIN(0.25,0.115)=" + Math.Min(0.25, 0.115));
- Console.WriteLine("MIN(1,2)=" + Math.Min(1, 2));
- Console.WriteLine("MIN(5,4)=" + Math.Min(5, 4));
- Console.WriteLine("MIN(24,34)=" + Math.Min(24, 34));
- }
- }
- }
on obtiendra le résultat suivant :
MIN(5,-18)=-18MIN(0.25,0.115)=0,115
MIN(1,2)=1
MIN(5,4)=4
MIN(24,34)=24
Voir également
Langage de programmation - JavaScript- Référence des classes - Math - min
Langage de programmation - Java - Référence des classes (JFC) - Math
Dernière mise à jour : Mardi, le 26 janvier 2016