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

java 基础知识小结

时间:2015-07-29 18:42:47      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:

1. java 有三个求整的函数 

  math.floor ()  (floor 是地板的意思)  向下求整

  math.ceil ()  (ceil 是天花板的意思 ) 向上求整

  math.round()  (round有四舍五入的意思)四舍五入

 

public class A{
    public static void main(String[] args){
        float f =1.1f;
        double d = 2.9;
        System.out.println(Math.ceil(f));
        System.out.println(Math.floor(f));
        System.out.println(Math.round(f));
        System.out.println(Math.ceil(d));
        System.out.println(Math.floor(d));
        System.out.println(Math.round(d));
    }
}

结果为:

2.0

1.0

1.0

3.0

2.0

3.0

 

java 基础知识小结

标签:

原文地址:http://www.cnblogs.com/caoyusongnet/p/4686539.html

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