我们在项目开发中少不了要开发报表,而对于数据的处理,用于不少的函数或是方法是必不可少的。其中就包括四舍五入的方法Math.round,这个的用法也是java面试题中常见的。下面是java代码是Math.round使用方法:
package com.buyli.interview.baseinfo;
/**
* @ 2012
* All right reserved
* @version 创建时间:Created on 2012-11-22
* 作者:Create by www.360buyli.com
* : 360buyli@gmail.com
* @description java面试题中Math.round的用法
*/
public class RoundInterview {
public static void main(String[] args) {
System.out.println("Math.round(11.5)输出:"+Math.round(11.5));
System.out.println("Math.round(-11.5)输出:"+Math.round(-11.5));
}
}
所输出的结果是:
Math.round(11.5)输出:12
Math.round(-11.5)输出:-11