2 条题解
-
2
端木俁 (房佳坤) LV 10 @ 4 年前
-
-24 年前@
#include <iostream>
#include <iomanip>
using namespace std;int main()
{
int n; cin>>n;
for(int i=0; i<n; i++)
{
for(int j=0; j<n; j++)
cout<<setw(3)<< j*n+i <<" ";
cout<<endl;
}
return 0;
}
- 1
信息
- ID
- 1206
- 难度
- 5
- 分类
- (无)
- 标签
- 递交数
- 469
- 已通过
- 160
- 通过率
- 34%
- 被复制
- 8
- 上传者