NYOJ题目28大数阶乘

NYOJ题目28大数阶乘

-------------------------------------
祭出BigInteger

AC代码:

import java.math.BigInteger;
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc=new Scanner(System.in); int n=sc.nextInt(); BigInteger ans=fac(n);
System.out.println(ans); } public static BigInteger fac(int n){
BigInteger res=BigInteger.valueOf(n);
while(--n>1) res=res.multiply(BigInteger.valueOf(n));
return res;
}
}

题目来源: http://acm.nyist.net/JudgeOnline/problem.php?pid=28

上一篇:中国象棋程序的设计与实现(十一)--第2次回答CSDN读者的一些问题


下一篇:BZOJ 1801: [Ahoi2009]chess 中国象棋( dp )