A390.元素定位题解:
2026-02-10 13:01:53
发布于:四川
0阅读
0回复
0点赞
A390.元素定位
#include<bits/stdc++.h>
using namespace std;
int a[110][110];
int main(){
int n,m,x,y;
cin >> n >> m;
for(int i=1;i<=n;i++){
for(int j=1;j<=m;j++){
cin >>a[i][j];
}
}
cin >> x >> y;
cout << a[x][y];
return 0;
}
这里空空如也






有帮助,赞一个