Section courante

A propos

Section administrative du site

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 :

  1. public class RoundSamples {
  2.     public static void main(String[] args) {
  3.         System.out.println("ROUND(1)=" + Math.round(1.0));
  4.         System.out.println("ROUND(1.1)=" + Math.round(1.1));
  5.         System.out.println("ROUND(1.7)=" + Math.round(1.7));
  6.         System.out.println("ROUND(-1)=" + Math.round(-1.0));
  7.         System.out.println("ROUND(-1.1)=" + Math.round(-1.1));
  8.         System.out.println("ROUND(-1.7)=" + Math.round(-1.7));
  9.         System.out.println("ROUND(30.2)=" + Math.round(30.2));
  10.         System.out.println("ROUND(-35.4)=" + Math.round(-35.4));
  11.     }
  12. }

on obtiendra le résultat suivant :

ROUND(1)=1
ROUND(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