标签:技术 ext back top com can blog scan style
-------------------------------------
祭出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
标签:技术 ext back top com can blog scan style
原文地址:http://www.cnblogs.com/cc11001100/p/5988821.html