grader.cpp: In function ‘int main(int, char**)’:
grader.cpp:65:19: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
tutorial5.cpp:5:1: error: ‘queue’ does not name a type
queue<int> Q[256];
^
tutorial5.cpp: In function ‘void check()’:
tutorial5.cpp:20:9: error: ‘Q’ was not declared in this scope
if (!Q[i].empty() && (chk < 0 || Q[chk].front() > Q[i].front())) chk = i;
^
tutorial5.cpp:23:8: error: ‘Q’ was not declared in this scope
Bake(Q[chk].front()); Q[chk].pop();
^
tutorial5.cpp: In function ‘void Order(int, int*)’:
tutorial5.cpp:39:2: error: ‘Q’ was not declared in this scope
Q[ordering].push(order_num);
^