Problem eating
User chenweilian
Submission Time 2025-12-09 14:44:11
Score 0
Max Time N/A
Max Memory N/A

Compile Error

eating.cpp: In function ‘int main()’:
eating.cpp:12:5: error: ‘map’ was not declared in this scope
12 | map<string, bool> fed;
| ^~~
eating.cpp:3:1: note: ‘std::map’ is defined in header ‘<map>’; did you forget to ‘#include <map>’?
2 | #include <iostream>
+++ |+#include <map>
3 | using namespace std;
eating.cpp:12:15: error: expected primary-expression before ‘,’ token
12 | map<string, bool> fed;
| ^
eating.cpp:12:17: error: expected primary-expression before ‘bool’
12 | map<string, bool> fed;
| ^~~~
eating.cpp:15:12: error: ‘fed’ was not declared in this scope
15 | if(fed[x+' '+y]) {
| ^~~