Anglais [raʊnd] Américain [raʊnd]
Rond; en forme d'arc; entier
adv; position) autour; près de
n. cercle; faire demi-tour, faire le tour;
Troisième personne du singulier : rounds Pluriel : rounds Participe présent : rounding Passé : arrondi Participe passé : arrondi Comparatif : plus rond Superlatif : plus rond
méthode javascript round() syntaxe
Fonction : Arrondissez un nombre à l'entier le plus proche.
Syntaxe : Math.round(x)
Paramètres : x Obligatoire. Doit être un nombre.
Renvoie : L'entier le plus proche de x.
Remarque : Pour 0,5, cette méthode arrondira. Par exemple, 3,5 sera arrondi à 4 et -3,5 sera arrondi à -3.
méthode javascript round() exemple
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <script type="text/javascript"> //不同的数舍入为最接近的整数 document.write(Math.round(0.60) + "<br />") document.write(Math.round(0.50) + "<br />") document.write(Math.round(0.49) + "<br />") document.write(Math.round(-4.40) + "<br />") document.write(Math.round(-4.60)) </script> </body> </html>
Exécuter l'instance »
Cliquez sur le bouton « Exécuter l'instance » pour afficher l'instance en ligne