public class Test {
public static void main(String[] args) {
double s = result(2.0,3.0,2.0);
System.out.println("s = "+s);
}
private static double result(double a,double R,double n){
double s = 0.0;
if(R != 0){
s = a*(Math.pow(R, n) - 1)/R - 1;
}
return s;
}
}
java幂不是你的
s= (a(R^n-1))/R-1)
的写法,而是用函数 。Math.pow(x,y).x 是指数,y是指数幂
写一个程序计算几何级数和的公式,
s= (a(R^n-1))/R-1)
[提示:你可以使用Math.pow(R,n)方法计算研究