JDOJ 1606 数字三角形

Posted fusiwei

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JDOJ 1606 数字三角形相关的知识,希望对你有一定的参考价值。

JDOJ 1606: 数字三角形

JDOJ传送门

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 数字三角形的主要内容,如果未能解决你的问题,请参考以下文章

数字三角形,从递归到动态规划

算法训练 数字三角形

动态规划——数字三角形

七:动态规划-数字三角形

数字三角形-poj

数字三角形