Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- int main() {
- int n, m;
- cin >> n >> m;
- int mat[n][m];
- for(int i = 0; i < n; i++) {
- for(int j = 0; j < m; j++) {
- cin >> mat[i][j];
- }
- }
- int x, y;
- cin >> x >> y;
- // sosedot gore od ova pole (x - 1, y)
- if(x - 1 >= 0) {
- cout << "Goren sosed: " << mat[x - 1][y] << endl;
- }
- // sosedot dole od ova pole (x + 1, y)
- if(x + 1 < n) {
- cout << "Dolen sosed: " << mat[x + 1][y] << endl;
- }
- //sosedot levo od ova pole (x, y - 1)
- if(y - 1 >= 0) {
- cout << "Lev sosed: " << mat[x][y - 1] << endl;
- }
- // sosedot desno od ova pole (x, y + 1)
- if(y + 1 < m) {
- cout << "Desen sosed: " << mat[x][y + 1] << endl;
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement