题解
2025-02-11 15:10:24
发布于:广东
9阅读
0回复
0点赞
#include <bits/stdc++.h>
using namespace std;
int main(){
int n,cnt = 1;
cin >> n;
for(int i = 1;i <= n;i++){
for(int j = 1;j <= n;j++){
cout << cnt << " ";
cnt++;
}
cout << endl;
}
return 0;
}
这里空空如也
有帮助,赞一个