QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#484236 | #7698. ISBN Conversion | ZhangYiDe | Compile Error | / | / | C++20 | 917b | 2024-07-19 17:00:27 | 2024-07-19 17:00:27 |
Due to the privacy settings of the submitter, you are not allowed to view this code.
Details
answer.code: In function ‘void solve()’: answer.code:21:16: error: ‘INT_MIN’ was not declared in this scope 21 | int max1 = INT_MIN; // Initialize max1 | ^~~~~~~ answer.code:4:1: note: ‘INT_MIN’ is defined in header ‘<climits>’; did you forget to ‘#include <climits>’? 3 | #include <cstring> +++ |+#include <climits> 4 | using namespace std;