C/C++打印楊輝三角形

打印出如下的楊輝三角形(要求打印出10行) 1 1 1 1 2 1 1 3 3 1 …web 代碼: void Pascal_triangle(int n){ int a[n]; // 初始化0 for(int i = 0; i < n; i++) a[i] = 0; for(int i = 0; i < n; i++){ for(int j = i; j >= 0; j--){
相關文章
相關標籤/搜索