javajava.lang.Math:public static long round(double a)和public static int round(float a)

Posted xiongjiawei

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javajava.lang.Math:public static long round(double a)和public static int round(float a)相关的知识,希望对你有一定的参考价值。

技术分享
 1 package math;
 2 
 3 public class TestMath_round {
 4     public static void main(String[] args) {
 5         System.out.println(Math.round(0.5));//1
 6         System.out.println(Math.round(-0.5));//0
 7         System.out.println(Math.round(-0.501));//-1
 8         //Math类的四舍五入方法round进行负数操作时小数位大于0.5才进位,小于等于0.5不进位
 9     }
10 }
View Code

 

技术分享
 1 package math;
 2 
 3 import java.math.BigDecimal;
 4 
 5 class MyRound{
 6     public static double div(double d,int scale){
 7         BigDecimal b1=new BigDecimal(d);
 8         BigDecimal b2=new BigDecimal(1);
 9         return b1.divide(b2, scale, BigDecimal.ROUND_HALF_UP).doubleValue();
10     }
11 }
12 public class TestMath_round {
13     public static void main(String[] args) {
14         System.out.println(Math.round(0.5));//1
15         System.out.println(Math.round(-0.5));//0
16         System.out.println(Math.round(-0.501));//-1
17         //Math类的四舍五入方法round进行负数操作时小数位大于0.5才进位,小于等于0.5不进位
18         System.out.println(MyRound.div(-0.5, 0));//-1.0
19         //改进后为通常的四舍五入。
20     }
21 }
改进后的通常四舍五入

 

以上是关于javajava.lang.Math:public static long round(double a)和public static int round(float a)的主要内容,如果未能解决你的问题,请参考以下文章

解析错误:语法错误,意外的 'public' (T_PUBLIC),期望 ',' 或 ')'

Inno Setup 不会在 C:\Users\Public 下创建文件夹 - 而是会做 C:\Users\Public\Public Documents

Java public class connDB 是啥意思

protected与public的区别

构造方法时 加public与不加public的区别问题

C#里class和public class的区别