1. <!DOCTYPE html>
    2. <html lang="en">
    3. <head>
    4. <meta charset="UTF-8">
    5. <title>4-3Math-round练习</title>
    6. <script type="text/javascript">
    7. //四舍五入
    8. alert("25.5:" +Math.round(25.5));
    9. alert("25.4:" +Math.round(25.4));
    10. alert("-25.5:" +Math.round(-25.5));
    11. alert("-25.4:" +Math.round(-25.4));
    12. </script>
    13. </head>
    14. <body>
    15. </body>
    16. </html>