文章
3
粉丝
328
获赞
4
访问
26.8k
#include<bits/stdc++.h>
using namespace std;
int main()
{
/*输入一个整数n(0 < n < 10),1 <= count <= 55*/
int n;
cin >> n;
int count = 1;//定义计数器
for(int i = 1 ; i <= n ; i++)// 一共有n行
{
for(int j = 0 ; j < i ; j++)// 每行i列
{
if(count < 10)
cout << count++ << " ";//1位数输出3个空格
else
cout << count++ << " ";//2位数输出2个空格
}
cout << endl;// 行末换行
}
return 0;
}
登录后发布评论
暂无评论,来抢沙发