解题思路:
知道大数类的应用
注意事项:
参考代码:
public static void main(String[] args) { BigInteger res = cal(1977); System.out.println(res); } public static BigInteger cal(int n) { BigInteger res = BigInteger.ONE; for(int i = 1; i <= n; i++) { res = res.multiply(BigInteger.valueOf(i)); } return res; }
0.0分
0 人评分
人民币问题 (C语言代码)浏览:720 |
IP判断 (C++代码)浏览:728 |
C语言训练-排序问题<2> (C++代码)(sort函数)浏览:1720 |
永远的丰碑 (C语言代码)浏览:698 |
【出圈】 (C语言代码)浏览:590 |
哥德巴赫曾猜测 (C语言代码)浏览:1148 |
小明A+B (C语言代码)浏览:1317 |
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:632 |
简单的a+b (C语言代码)浏览:385 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:368 |