题解 | #矩阵元素定位#
矩阵元素定位
http://www.nowcoder.com/practice/b8e6a46992fe4e11b2822b20561b6d94
使用二维数组定位
#include<stdio.h> int main() { int n=0,m=0,arr[5][5]; //长度 scanf("%d %d",&n,&m); for(int i = 0;i<n;++i) for(int j = 0;j<m;++j) scanf("%d",&arr[i][j]); //接收 int x =0,y=0; scanf("%d %d",&x,&y); printf("%d\n",arr[x-1][y-1]); //打印 return 0; }