Math的round方法
Posted kitor
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Math的round方法相关的知识,希望对你有一定的参考价值。
代码如下,后面的注释是输出的结果
public static void main(String[] args) System.out.println(Math.round(0.399));//0 System.out.println(Math.round(0.4));//0 System.out.println(Math.round(0.41));//0 System.out.println(Math.round(0.499));//0 System.out.println(Math.round(0.5));//1 System.out.println(Math.round(0.51));//1 System.out.println(Math.round(0.6));//1 System.out.println("======================"); System.out.println(Math.round(-0.6));//-1 System.out.println(Math.round(-0.51));//-1 System.out.println(Math.round(-0.5));//0 System.out.println(Math.round(-0.499));//0 System.out.println(Math.round(-0.41));//0 System.out.println(Math.round(-0.4));//0 System.out.println(Math.round(-0.399));//0
总结,round的进位是向数轴的右方向进位的,而不是按照数的绝对值进行四舍五入的
关于Math对三角函数表示的一些知识点查看https://blog.csdn.net/River_Continent/article/details/80637952
以上是关于Math的round方法的主要内容,如果未能解决你的问题,请参考以下文章
Math.ceil()Math.floor()和Math.round()
Javascript Math ceil()floor()round()三个函数的区别