基本上,我正在编写一个程序来手动进行简单的除法,我希望小数位最多为 10^6 位。该程序适用于<3000的输入,但是当我走高时,它显示:
Exception in thread "main" java.lang.StackOverflowError
这是我的代码:
{
....
....
int N=100000;//nth place after decimal point
String res=obj.compute(N,103993.0,33102.0,ans); //division of 103993.0 by 33102.0
System.out.println(res);
}
public String compute (int n, double a, double b, String ans){
int x1=(int)a/(int)b;
double x2=a-x1*b;
double x3=x2*10;
int c=0;
if (n==0||n<0)
return ("3."+ans.substring(1));
else if (x3>b){
ans+=""+x1;
c=1;
}
else if(x3*10>b){
ans+=x1+"0";
c=10;
}
else if(x3*100>b){
ans+=x1+"00";
c=100;
}
else if(x3*1000>b){
ans+=x1+"000";
c=1000;
}
else if(x3*10000>b){
ans+=x1+"0000";
c=10000;
}
return compute(n-String.valueOf(c).length(),x3*c,b,ans);
}
我不是 Java 的铁杆程序员。我需要帮助来解决这种情况。我阅读了一些关于增加堆栈大小的 SO 帖子,但我不明白该方法。