BASIC-6 杨辉三角

#include 
const int MAXN = 110;

int n, number[MAXN][MAXN];

int main() {
    scanf("%d",&n);
    for(int i=0; i

你可能感兴趣的:(其他算法题)