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