首页 新闻 会员 周边
1
回答数

已解决问题 10 有大佬看一下我这个用递归求杨辉三角哪里错了吗

include<iostream> using namespace std; int yh(int i,int j) { int a[i][j] = {}; a[1][0] = 1; if(i ==