咱們在項目開發中少不了要開發報表,而對於數據的處理,用於很多的函數或是方法是必不可少的。其中就包括四捨五入的方法Math.round,這個的用法也是java面試題中常見的。下面是java代碼是Math.round使用方法: java
package com.buyli.interview.baseinfo; 面試
/** 函數
* @Copyright @ 2012 spa
* All right reserved .net
* @version 建立時間:Created on 2012-11-22 ip
* @author 做者:Create by www.360buyli.com 開發
* @Email : 360buyli@gmail.com get
* @description java面試題中Math.round的用法 io
*/ class
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