解题思路:
注意事项:
参考代码:
import java.math.BigInteger;
import java.util.*;
public class Test {
public static void main(String[] args){
Scanner scanner = new Scanner(System.in);
BigInteger n = scanner.nextBigInteger();
BigInteger item = BigInteger.ONE;
BigInteger i = BigInteger.ONE;
BigInteger bigInteger = BigInteger.ZERO;
while (i.compareTo(n) <= 0) {
item = item.multiply(i);
i = i.add(BigInteger.ONE);
bigInteger = bigInteger.add(item);
}
System.out.println(bigInteger);
}
}
0.0分
0 人评分
Lucky Word (C++代码)浏览:1004 |
2003年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码)浏览:622 |
C语言程序设计教程(第三版)课后习题8.9 (C语言代码)浏览:597 |
C语言训练-自由落体问题 (C语言代码)浏览:1775 |
字符串对比 (C语言代码)浏览:1471 |
C语言程序设计教程(第三版)课后习题8.1 (C语言代码)浏览:1292 |
C语言训练-列出最简真分数序列* (C语言代码)浏览:658 |
简单的a+b (C语言代码)浏览:674 |
蚂蚁感冒 (C语言代码)浏览:816 |
矩阵转置 (C语言代码)浏览:855 |