码迷,mamicode.com
首页 > 其他好文 > 详细

NYOJ题目28大数阶乘

时间:2016-10-23 02:16:55      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:技术   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

NYOJ题目28大数阶乘

标签:技术   ext   back   top   com   can   blog   scan   style   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!