2 条题解
- 1
信息
- ID
- 192
- 时间
- 1000ms
- 内存
- 16MiB
- 难度
- 6
- 标签
- 递交数
- 22
- 已通过
- 11
- 上传者
#include <bits/stdc++.h> using namespace std;
int main() { int a; cin >> a; for (int i = 1; i <= a; i++) { for (int j = i; j < i + a; j++) { if (j / 10 != 1) { cout << " "; } cout << " "<< j ; } cout << endl; }
return 0;
}