NYOJ题目28大数阶乘
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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; } }
以上是关于NYOJ题目28大数阶乘的主要内容,如果未能解决你的问题,请参考以下文章