round |
Arrondir |
---|---|
Java | java.lang |
Math |
Syntaxe
static long round(double a); static int round(float a); |
Paramètres
Nom | Description |
---|---|
a | Ce paramètre permet d'indiquer l'expression contenant le nombre à traiter. |
Description
Ces méthodes retournent la valeur arrondie d'un nombre réel en type de données «long».
Exemple
Voici un exemple montrant une utilisation plus classique de cette fonction :
- public class RoundSamples {
- public static void main(String[] args) {
- System.out.println("ROUND(1)=" + Math.round(1.0));
- System.out.println("ROUND(1.1)=" + Math.round(1.1));
- System.out.println("ROUND(1.7)=" + Math.round(1.7));
- System.out.println("ROUND(-1)=" + Math.round(-1.0));
- System.out.println("ROUND(-1.1)=" + Math.round(-1.1));
- System.out.println("ROUND(-1.7)=" + Math.round(-1.7));
- System.out.println("ROUND(30.2)=" + Math.round(30.2));
- System.out.println("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
Dernière mise à jour : Dimanche, le 21 juin 2015