Output the Yanghui triangel
|
||||||
|
||||||
Output the Yanghui triangel
|
||||||
|
||||||
题目描述
Write program to output the Yanghui triangel of n*n, where n is an input. The Yanghui triangel is defined as 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1 1 5 10 10 5 1 .......................... 输入格式
Each lines of the input is an integer that denotes the dimension of the Yanghui triangel that will be outputted to the screen. An input 0 denotes the end of the input. 输出格式
Each value of the output is followed by a TAB, include the last value of a line. 样例输入
5 6 7 0 样例输出
1 1 1 1 2 1 1 3 3 1 1 4 6 4 1 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1 1 5 10 10 5 1 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1 1 5 10 10 5 1 1 6 15 20 15 6 1 |
SOJ.Output the Yanghui triangel
原文地址:http://blog.csdn.net/a576699534/article/details/44307555