题解列表

筛选

杨辉三角 (C语言代码)

摘要:#include <stdio.h>int main(){     int a,i,j;     int b[30][30];      while(scanf("%d",&a)!=EOF)     ……