round/ceil/floorf

转自:http://blog.csdn.net/wygzky/article/details/3292202

 

这三个方法是在让人头疼,经过一阵搜索之后,特总结如下:


Math.round:如果参数是小数,则求本身的四舍五入。
Math.ceil:如果参数是小数,则求最小的整数但不小于本身.
Math.floor:如果参数是小数,则求最大的整数但不大于本身.    

同时注意他们的返回类型:
long round(double a)  
int round(float a) 
double ceil(double a)  
double floor(double a) 

特赋代码如下:
  1. public class RoundTest {
  2.     public static void main(String[] args) {
  3.         double[] values = {-2.3,-1.0,0.25,4,1.5};
  4.         
  5.         for(int i = 0; i < values.length; i++){
  6.             
  7.             System.out.println(Math.round(values[i]));
  8.             
  9.             System.out.println(Math.ceil(values[i]));
  10.             
  11.             System.out.println(Math.floor(values[i])); 
  12.             
  13.             System.out.println("===========" +  i + "============");
  14.             
  15.         }
  16.     }
  17. }


返回的结果如下:
-2
-2.0
-3.0
===========0============
-1
-1.0
-1.0
===========1============
0
1.0
0.0
===========2============
4
4.0
4.0
===========3============
2
2.0
1.0
===========4============

你可能感兴趣的:(IOS)