首页
科技
登录
6mi
u
盘
搜
搜 索
科技
2013省赛----振兴中华
2013省赛----振兴中华
科技
2022-08-05
99
public class TestOne { public static void main(String[] args) { int count = f(0,0); System.out.println(count); } private static int f(int i, int j) { // TODO Auto-generated method stub if(i==3 || j==4) { return 1; } return f(i,j+1)+f(i+1,j); } }
转载请注明原文地址:https://blackberry.8miu.com/read-13346.html
最新回复
(
0
)