Round |
Arrondir |
---|---|
Math | |
C# (C Sharp) | System |
Syntaxe
static decimal Round(decimal d) static double Round(double d) static decimal Round(decimal d,int decimals) static decimal Round(decimal d,MidpointRounding mode) static double Round(double value,int digits) static double Round(double value,MidpointRounding mode) static decimal Round(decimal d,int decimals,MidpointRounding mode) static double Round(double value,int digits,MidpointRounding mode) |
Paramètres
Nom | Description |
---|---|
d | Ce paramètre permet d'indiquer l'expression contenant le nombre à traiter. |
decimals | Ce paramètre permet d'indiquer le nombre de décimal souhaité. |
mode | Ce paramètre permet d'indiquer le mode d'arrondissement. |
Description
Ces méthodes retournent la valeur arrondie d'un nombre réel en type de données entier ou avec un certain nombre de décimal.
Exemple
Voici un exemple montrant une utilisation plus classique de cette fonction :
Essayer maintenant !
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
-
- namespace round
- {
- class Program
- {
- static void Main(string[] args)
- {
- Console.WriteLine("ROUND(1)=" + Math.Round(1.0));
- Console.WriteLine("ROUND(1.1)=" + Math.Round(1.1));
- Console.WriteLine("ROUND(1.7)=" + Math.Round(1.7));
- Console.WriteLine("ROUND(-1)=" + Math.Round(-1.0));
- Console.WriteLine("ROUND(-1.1)=" + Math.Round(-1.1));
- Console.WriteLine("ROUND(-1.7)=" + Math.Round(-1.7));
- Console.WriteLine("ROUND(30.2)=" + Math.Round(30.2));
- Console.WriteLine("ROUND(-35.4)=" + Math.Round(-35.4));
- }
- }
- }
on obtiendra le résultat suivant :
ROUND(1)=1ROUND(1.1)=1
ROUND(1.7)=2
ROUND(-1)=-1
ROUND(-1.1)=-1
ROUND(-1.7)=-2
ROUND(30.2)=30
ROUND(-35.4)=-35
Voir également
Langage de programmation - JavaScript- Référence des classes - Math - round
Langage de programmation - Java - Référence des classes (JFC) - Math
Dernière mise à jour : Mardi, le 26 janvier 2016