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

原文地址:https://www.cnblogs.com/cc11001100/p/5988821.html