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

1057 N的阶乘

时间:2016-04-03 22:13:43      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:

1057 N的阶乘

基准时间限制:秒 空间限制:131072 KB 

输入NN的阶乘的准确值。

Input

输入N(1 <= N <= 10000)

Output

输出N的阶乘

Input示例

5

Output示例

120

import java.math.BigInteger;
import java.util.Scanner;
public class Main {
    static BigInteger ans(BigInteger a,int b){
        BigInteger anss=BigInteger.ONE;
        for(int i=1;i<=b;i++)
            anss=anss.multiply(new BigInteger(i+""));
        return anss;
        
    }
    

    public static void main(String[] args) {
        // TODO Auto-generated method stub
        Scanner sc=new Scanner(System.in);
        while(sc.hasNext()){
            BigInteger a=sc.nextBigInteger();
                int b=Integer.parseInt(a+"");
            System.out.println(ans(a,b));
            
        }
        
        sc.close();

    }

}

 

1057 N的阶乘

标签:

原文地址:http://www.cnblogs.com/watchfree/p/5350707.html

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