https://www.acgo.cn/
2024-06-13 17:45:02
发布于:广东
1阅读
0回复
0点赞
#include<iostream>
using namespace std;
int main(){
int n,m,x,y;
cin >> n >> m;
int a[105][105] = {0};
for(int i = 0;i < n;i++){
for(int j = 0;j < m;j++){
cin >> a[i][j];
}
}
cin >> x >> y;
cout << a[x - 1][y - 1];
return 0;
}
这里空空如也
有帮助,赞一个