摘要:
public static String getFormatString(float num){ String result=String.valueOf(num); try{ NumberFormat numFormat=NumberFormat.getNumberInstance(); numFormat.setMaximumFractionDigits(10); numFormat.setGroupingUsed(false); result=numFormat.format(num); }catch(Exception e){ result=String.v... 阅读全文
摘要:
Math.pow(64,1d/3);64开3次方根 阅读全文
摘要:
在java中求logxN,首先要弄明白一个初中学到的公式logxN=logeN/logex,logeN代表以e为底的N的对数,logex代表以e为底的x的对数.在java.lang.math类中的log(double a)代表以e为底的a的对数,因此logxN在Java中的表示为: log((double)N)/log((double)x) 阅读全文