Section courante

A propos

Section administrative du site

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 !
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. namespace min
  7. {
  8.     class Program
  9.     {
  10.         static void Main(string[] args)
  11.         {
  12.             Console.WriteLine("MIN(5,-18)=" + Math.Min(5, -18));
  13.             Console.WriteLine("MIN(0.25,0.115)=" + Math.Min(0.25, 0.115));
  14.             Console.WriteLine("MIN(1,2)=" + Math.Min(1, 2));
  15.             Console.WriteLine("MIN(5,4)=" + Math.Min(5, 4));
  16.             Console.WriteLine("MIN(24,34)=" + Math.Min(24, 34));
  17.         }
  18.     }
  19. }

on obtiendra le résultat suivant :

MIN(5,-18)=-18
MIN(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