JDOJ 1606 数字三角形
Posted fusiwei
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JDOJ 1606 数字三角形相关的知识,希望对你有一定的参考价值。
JDOJ 1606: 数字三角形
Description
输入n,输出n的数字三角形
见样例
Input
n
Output
n的数字三角形
Sample Input
4
Sample Output
1 1 2 1 2 3 1 2 3 4
题解:
这回可不是动态规划的数字三角形。
是...真的数字三角形。
看代码学吧。
代码:
#include<cstdio>
#include<cstring>
#include<cmath>
#include<iostream>
#include<string>
#include<algorithm>
using namespace std;
int main()
int i,a,b,n;
scanf("%d",&n);
for(a=1;a<=n;a++)
for(i=1;i<=a;i++)
printf("%d ",i);
printf("\n");
return 0;
以上是关于JDOJ 1606 数字三角形的主要内容,如果未能解决你的问题,请参考以下文章