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

卡特兰数

时间:2017-10-17 21:52:55      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:logs   eth   []   public   scan   log   sys   java   ati   

占坑

import java.math.BigInteger;
import java.util.Scanner;


public class Main {

    public static void main(String[] args) {
        // TODO Auto-generated method stub
        Scanner input = new Scanner(System.in);
        BigInteger []k = new BigInteger[1100];
        k[0] = BigInteger.valueOf(1);
        for(int j=1;j<110;j++)
        {
                k[j]=k[j-1].multiply(BigInteger.valueOf(4*j-2)).divide(BigInteger.valueOf(j+1));  
        }
        while (input.hasNext())  
        {  
            int times=input.nextInt();  
            if(times!=-1)  
                System.out.println(k[times]);  
            else 
            {  
                break;  
            }  
        }  
    }

}

 

卡特兰数

标签:logs   eth   []   public   scan   log   sys   java   ati   

原文地址:http://www.cnblogs.com/aiguona/p/7683839.html

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