Math.round用法

  我们在项目开发中少不了要开发报表,而对于数据的处理,用于不少的函数或是方法是必不可少的。其中就包括四舍五入的方法Math.round,这个的用法也是java面试题中常见的。下面是java代码Math.round使用方法:

package com.buyli.interview.baseinfo;

 

/**

 * @Copyright @ 2012

 * All right reserved

 * @version 创建时间:Created on 2012-11-22

 * @author 作者:Create by www.360buyli.com

 * @Email: [email protected]

 * @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

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章