题解 | #走方格的方案数#

走方格的方案数

http://www.nowcoder.com/practice/e2a22f0305eb4f2f9846e7d644dba09b

只可以向右或者向下哦

import java.util.*;
public class Main {
    public static void main(String[] args) {
        Scanner scan = new Scanner(System.in);
        while(scan.hasNext()){
            System.out.println(getCount(scan.nextInt(), scan.nextInt()));
        }
        scan.close();
    }
    
    public static int getCount(int m, int n){
        if(m<0 || n<0){
            return 0;
        }
        if(m == 1 || n == 1){
            return m+n;
        }
        return getCount(m,n-1)+ getCount(m-1, n);
    }
}




全部评论

相关推荐

投递长鑫存储等公司8个岗位
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务