数列的定义如下: 数列的第一项为n,以后各项为前一项的平方根,求数列的前m项的和。 输入数据有多组,每组占一行,由两个整数n(n<10000)和m(m<1000)组成,n和m的含义如前所述。 对于每组输入数据,输出该数列的和,每个测试实例占一行,要求精度保留2位小数。
输入 81 4?
2 2
输出
94.73
3.14
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
while (sc.hasNext()){
int n = scan.nextInt();
int m = scan.nextInt();
double ans= allSum(n,m);
System.out.printf("%.2f",res);
}
scan.close();
}
private static double allSum(double n, int m){
double s = 0;
for (int i = 0; i < m; i ++){
s += n;
n = Math.sqrt(n);
}
return s;
}
}
|