0_0_15541095_23103.cpp: In function 'int main()':
0_0_15541095_23103.cpp:15:12: error: conflicting declaration 'int e [6][3]'
int e[6][3]={{1,0,0},{-1,0,0},{0,1,0},{0,-1,0},{0,0,1},{0,0,-1}};
^
0_0_15541095_23103.cpp:14:14: note: previous declaration as 'int e'
int a,b,c,d,e,f,i,j,k,ans;
^
0_0_15541095_23103.cpp:16:14: error: 'n' was not declared in this scope
scanf("%d",&n);
^
0_0_15541095_23103.cpp:29:18: error: 'x' was not declared in this scope
scanf("%d",&x[i][j][k]);
^
0_0_15541095_23103.cpp:48:8: error: 'l' was not declared in this scope
for(l=0;l<6;l++)
^
0_0_15541095_23103.cpp:50:20: error: invalid types 'int[int]' for array subscript
nex.x=cur.x+e[i][0];
^
0_0_15541095_23103.cpp:51:20: error: invalid types 'int[int]' for array subscript
nex.y=cur.y+e[i][1];
^
0_0_15541095_23103.cpp:52:20: error: invalid types 'int[int]' for array subscript
nex.z=cur.z+e[i][2];
^
0_0_15541095_23103.cpp:62:6: error: 'braek' was not declared in this scope
braek;
^
0_0_15541095_23103.cpp:64:37: error: lvalue required as left operand of assignment
if(nex.x==a-1&&nex.y==b-1&&nex.z=c-1)
^
0_0_15541095_23103.cpp:71:17: error: no matching function for call to 'std::queue<node>::push(int&)'
q.push(nex.t);
^
0_0_15541095_23103.cpp:71:17: note: candidates are:
In file included from GCC4.9.2/x86_64-w64-mingw32/include/c++/queue:64:0,
from 0_0_15541095_23103.cpp:2:
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_queue.h:215:7: note: void std::queue<_Tp, _Sequence>::push(const value_type&) [with _Tp = node; _Sequence = std::deque<node, std::allocator<node> >; std::queue<_Tp, _Sequence>::value_type = node]
push(const value_type& __x)
^
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_queue.h:215:7: note: no known conversion for argument 1 from 'int' to 'const value_type& {aka const node&}'
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_queue.h:220:7: note: void std::queue<_Tp, _Sequence>::push(std::queue<_Tp, _Sequence>::value_type&&) [with _Tp = node; _Sequence = std::deque<node, std::allocator<node> >; std::queue<_Tp, _Sequence>::value_type = node]
push(value_type&& __x)
^
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_queue.h:220:7: note: no known conversion for argument 1 from 'int' to 'std::queue<node>::value_type&& {aka node&&}'
|