java math.ceil是什么,讓我們一起了解一下?
Math.ceil()是常見編程語言中的常用代碼,ceil() 方法執(zhí)行的是向上取整計算,返回的是大于或等于函數(shù)參數(shù),并且與之最接近的整數(shù)。
?Math.ceil(param)是如何使用的?
代碼如下:
double?dividend?=?7;//?被除數(shù) double?divisor?=?2;//?除數(shù) double?flag?=?0; int?result1?=?0; int?result2?=?0; //?函數(shù)式 flag?=?Math.ceil(dividend?/?divisor);//向上取整計算 result1?=?(int)flag;//將結(jié)果轉(zhuǎn)化為int數(shù)據(jù)類型 //?判斷式:整除法 if?((dividend?%?divisor)?==?0)?{ result2?=?(int)dividend?/?(int)divisor;???????????????//?將操作數(shù)轉(zhuǎn)化為int型數(shù)據(jù) }?else?{ result2?=?((int)dividend?/?(int)divisor)?+?1;?????????//?將操作數(shù)轉(zhuǎn)化為int型數(shù)據(jù) } ? Object[]?options?=?{?"成功",?"取消"?}; JOptionPane.showOptionDialog(null,?"函數(shù)ceil求值="?+?result1?+?";?判斷求值="?+result2,? "Warning",JOptionPane.DEFAULT_OPTION,? JOptionPane.WARNING_MESSAGE,null,?options,?options[0]);
java math.ceil的函數(shù)用法:
大于等于參數(shù),且相當于整數(shù)值的double類型值(即小數(shù)部分為0)
/** ?????*?Returns?the?double?conversion?of?the?most?negative?(closest?to?negative ?????*?infinity)?integer?value?greater?than?or?equal?to?the?argument. ?????*??????*?Special?cases: ?????*??????*?{@code?ceil(+0.0)?=?+0.0}?????*?{@code?ceil(-0.0)?=?-0.0}?????*?{@code?ceil((anything?in?range?(-1,0))?=?-0.0}?????*?{@code?ceil(+infinity)?=?+infinity}?????*?{@code?ceil(-infinity)?=?-infinity}?????*?{@code?ceil(NaN)?=?NaN}?????*??????*/ ????public?static?native?double?ceil(double?d);
以上就是小編今天的分享了,希望可以幫助到大家。