Max |
Maximum |
---|---|
Math | |
C# (C Sharp) | System |
Syntaxe
static decimal Max(decimal a,decimal b) static double Max(double a,double b) static float Max(float a,float b) static int Max(int a,int b) static long Max(long a,long b) static sbyte Max(sbyte a,sbyte b) static short Max(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 grande valeur entre les deux paramètres.
Exemple
Voici un exemple permet d'afficher les plus grandes valeurs :
Essayer maintenant !
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
-
- namespace max
- {
- class Program
- {
- static void Main(string[] args)
- {
- Console.WriteLine("MAX(5,-18)=" + Math.Max(5, -18));
- Console.WriteLine("MAX(0.25,0.115)=" + Math.Max(0.25, 0.115));
- Console.WriteLine("MAX(1,2)=" + Math.Max(1, 2));
- Console.WriteLine("MAX(5,4)=" + Math.Max(5, 4));
- Console.WriteLine("MAX(24,34)=" + Math.Max(24, 34));
- }
- }
- }
on obtiendra le résultat suivant :
MAX(5,-18)=5MAX(0.25,0.115)=0,25
MAX(1,2)=2
MAX(5,4)=5
MAX(24,34)=34
Voir également
Langage de programmation - JavaScript- Référence des classes - Math - max
Langage de programmation - Java - Référence des classes (JFC) - Math
Dernière mise à jour : Mardi, le 26 janvier 2016