#include<bits/stdc++.h>

using namespace std;

int nxt[5][5];


int main(){

for(int i=0; i<4; i++) cout<<nxt[i][0]<<" ";

cout<<'\n';

//dir , mirror (-1) \ 

nxt[0][0] = 5;

nxt[1][0] = 4;

nxt[2][0] = 3;

nxt[3][0] = 2;

for(int i=0; i<4; i++) cout<<nxt[i][0]<<" "; cout<<'\n';

}

이거 실행하면 nxt[0][0]에 값이 안들어오는데 도대체 어케된거죠 

첫 줄에 0 0 0 0 

두 번째 줄에 5 4 3 2 대신 0 4 3 2 가 출력됩니다  저 술 안마셨습니다