| Problem | duckhunt5 |
|---|---|
| User | seeyoulater |
| Submission Time | 2026-05-16 09:30:12 |
| Score | 0 |
| Max Time | N/A |
| Max Memory | N/A |
Owl Get a Life
duckhunt5.cpp: In function ‘int main()’:
duckhunt5.cpp:3:2: error: ‘multiset’ was not declared in this scope
3 | multiset<int> ms;
| ^~~~~~~~
duckhunt5.cpp:3:11: error: expected primary-expression before ‘int’
3 | multiset<int> ms;
| ^~~
duckhunt5.cpp:4:2: error: ‘ms’ was not declared in this scope
4 | ms.insert(2);
| ^~
duckhunt5.cpp:10:6: error: declaration of ‘auto it’ has no initializer
10 | for(auto it ; ms){
| ^~~~
duckhunt5.cpp:10:18: error: expected ‘;’ before ‘)’ token
10 | for(auto it ; ms){
| ^
| ;
duckhunt5.cpp:11:3: error: ‘cout’ was not declared in this scope
11 | cout<<it<<" ";
| ^~~~