java用do-while循环计算1 1/2! 1/3! 1/4! ...的前20项和
java用do-while循环计算1 1/2! 1/3! 1/4! ...的前20项和
日期:2017-09-28 17:30:08 人气:1
先写个求阶乘的方法:
public static int jieCheng(int n) {
int result = 1;
for (int i = 1; i <= n; i++) {
result *= i;
}
return result;
}
然后如你要求的用dowhile()循环计算:(也给你写了个方法)
public static double caculate(int n) {
double sum = 0.0;
int i=1;
do{