Problem park
User Memeathon
Submission Time 2025-03-15 21:23:29
Score 0
Max Time N/A
Max Memory N/A

Compile Error

park.cpp:10:11: error: variable or field ‘join’ declared void
10 | void join(s, w) {
| ^
park.cpp:10:11: error: ‘s’ was not declared in this scope
park.cpp:10:14: error: ‘w’ was not declared in this scope
10 | void join(s, w) {
| ^
park.cpp:15:13: error: variable or field ‘leave’ declared void
15 | void leave(i) {
| ^
park.cpp:15:12: error: ‘i’ was not declared in this scope; did you mean ‘it’?
15 | void leave(i) {
| ^
| it
park.cpp:19:13: error: variable or field ‘board’ declared void
19 | void board(b) {
| ^
park.cpp:19:12: error: ‘b’ was not declared in this scope; did you mean ‘bt’?
19 | void board(b) {
| ^
| bt
park.cpp: In function ‘int main()’:
park.cpp:52:4: error: ‘join’ was not declared in this scope
52 | join(x, y);
| ^~~~
park.cpp: