java

求1!+2!+3!+4!+…+20!

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
public class  {
public static void main(String[] args) {
long sum = 0;

for (int i=1; i<=20; i++) {
sum += fun(i);
}

System.out.println("1到20的阶乘为:"+sum);
}

private static long fun(int i) {
long temp = 1;
for (int j=1; j<=i; j++) {
temp *= j;
}

return temp;
}
}

————–21/50————–