-------------------------------------
祭出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
时间: 2024-10-24 01:35:31