兩周實訓,第三題:楊輝三角
問題描述:編寫程式,生成並輸出楊輝三角形(10行)完整**:
/*****************************************
module name:楊輝三角
module date:20141222
module auth:李廣慶
description:編寫程式,生成並輸出楊輝三角形(10行)
other:
revision history:
date rel ver. notes
20141222 1.0 建立程式
****************************************==*/
#include
#include
int main(int argc, char *argv)
; int i,j;
printf(" 楊輝三角\n");
for(i=0;i<=9;i++)
}for(i=0;i<10;i++)
printf("\n");
} system("pause");
return
0;}
python楊輝三角 楊輝三角I II
給定乙個非負整數 numrows,生成楊輝三角的前 numrows 行。在楊輝三角中,每個數是它左上方和右上方的數的和。示例 輸入 5 輸出 1 1,1 1,2,1 1,3,3,1 1,4,6,4,1 可以一行一行錯位加,當然這裡提供更簡便的方法。任取一行描述 1,2,1 如何得到 1,3,3,1 ...
C C 楊輝三角形
輸入資料報含多個測試例項,每個測試例項的輸入只包含乙個正整數n 1 n 30 表示將要輸出的楊輝三角形的層數。對應於每乙個輸入,請輸出相應層數的楊輝三角形,每一層的整數之間用乙個空格隔開,每乙個楊輝三角後面加乙個空行。2 31 1 11 1 11 2 1注意 輸出時每行中整數之間有1個空格,最後乙個...
Java 楊輝三角
public class yanghui 生成指定行數的楊輝三角形 param lines 楊輝三角形的行數 public void printyanghui int lines if lines 30 int line new int lines int maxlen getmaxlen line...