标签:三角形 数字 des desc pre std ring scan tput
输入n,输出n的数字三角形
见样例
n
n的数字三角形
4
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;
}
标签:三角形 数字 des desc pre std ring scan tput
原文地址:https://www.cnblogs.com/fusiwei/p/11326524.html