码迷,mamicode.com
首页 > 编程语言 > 详细

【java】java.lang.Math:public static long round(double a)和public static int round(float a)

时间:2017-04-07 21:50:47      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:操作   code   one   isp   ide   oid   改进   log   nbsp   

技术分享
 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 }
改进后的通常四舍五入

 

【java】java.lang.Math:public static long round(double a)和public static int round(float a)

标签:操作   code   one   isp   ide   oid   改进   log   nbsp   

原文地址:http://www.cnblogs.com/xiongjiawei/p/6679851.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!