赞
踩
算法4 练习:1.1.20
直接上代码
public class Method {
public static double iterate(int N) {
double sum = 0;
if (N == 0) return 0;
if (N>0) {
sum += Math.log(N)+iterate(N-1);
}
return sum;
}
public static void main(String[] args) {
double result = iterate (10);
StdOut.printf("Result: %.2f", result);
}
打印结果
Result: 15.10
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。