Problem management
User Jinxuan
Submission Time 2023-11-21 12:38:18
Score 0
Max Time N/A
Max Memory N/A

Compile Error

management.cpp:1:1: error: ‘include’ does not name a type
1 | include <bits/stdc++.h>
| ^~~~~~~
management.cpp: In function ‘int main()’:
management.cpp:5:2: error: ‘ios_base’ has not been declared
5 | ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0);
| ^~~~~~~~
management.cpp:5:36: error: ‘cin’ was not declared in this scope
5 | ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0);
| ^~~
management.cpp:5:48: error: ‘cout’ was not declared in this scope
5 | ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0);
| ^~~~
management.cpp:9:2: error: ‘memset’ was not declared in this scope
9 | memset(array, 0, sizeof(array));
| ^~~~~~
management.cpp:1:1: note: ‘memset’ is defined in header ‘<cstring>’; did you forget to ‘#include <cstring>’?
+++ |+#include <cstring&