SOJ.Output the Yanghui triangel

本文介绍了一道关于输出杨辉三角的编程题,要求根据输入的整数n生成n*n的杨辉三角,并规定了时间及内存限制。文章提供了样例输入输出,帮助理解题目要求。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Output the Yanghui triangel
 
 
总提交数量:225通过数量:59
 
   
   
 
时间限制:1秒    内存限制:256兆
题目描述

 Write program to output the Yanghui triangel of n*n, where n is an input. The Yanghui triangel is defined as 

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	


题目中的TAB表示制表符\t,一开始没注意看两位数输出和一位数输出也被坑惨了


#include
    
    
     
     
using namespace std;
int a[10][10];
int main(){
	int n;
	for (int i = 0; i < 10; ++i)
	{
		a[i][0]=1;
		a[i][i]=1;
		for (int j = 0; j < i; ++j)
		{
			a[i][j]=a[i-1][j-1]+a[i-1][j];
		}
	}
	while(1){
		cin>>n;
		if(n==0) break;
		else{
			for(int i=0;i
     
     
    
    

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值