概述
程序需求:http://joezxy.iteye.com/blog/366794
import java.math.BigDecimal;
public class Algorithm {
public static void main(String[] args) {
powerWrapper(95.123,12);
powerWrapper(0.4321,20);
powerWrapper(5.1234,15);
powerWrapper(6.7592,9);
powerWrapper(98.999,10);
powerWrapper(1.0100,12);
}
public static void powerWrapper(double x, int y){
String result = power(x,y);
System.out.println(format(result));
}
public static String power(double x, int y){
BigDecimal b1 = new BigDecimal(String.valueOf(x));
return b1.pow(y).toPlainString();
}
public static String format(Object x){
String regex1 = "^0\..*$";
String regex2 = "^.*\.0*$";
String regex3 = "^0\.0*$";
String result = String.valueOf(x);
if(result.matches(regex3)){
result = "0";
}
else if(result.matches(regex1)){
result = result.replace("0.", ".");
}
else if(result.matches(regex2)){
int index = result.indexOf('.');
result = result.substring(0, index);
}
return result;
}
}
最后
以上就是阔达冬日为你收集整理的练习BigDecimel and Regular Expression的全部内容,希望文章能够帮你解决练习BigDecimel and Regular Expression所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复