NYOJ题目28大数阶乘

时间:2023-03-08 17:49:56

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