题解 | A390.元素定位
2025-09-06 14:23:04
发布于:广东
0阅读
0回复
0点赞
#include <bits/stdc++.h>
using namespace std;
int a[105][105];
int main(){
int n , m;
cin >> n >> m;
for(int i = 1;i <= n;i++){
for(int j = 1;j <= m;j++){
cin >> a[i][j];
}
}
int x , y;
cin >> x >> y;
cout << a[x][y];
return 0;
}
这里空空如也
有帮助,赞一个