QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#323071 | #5581. Champernowne Count | ZhangYiDe | Compile Error | / | / | C++98 | 314b | 2024-02-08 12:35:35 | 2024-02-08 12:35:35 |
Due to the privacy settings of the submitter, you are not allowed to view this code.
Details
answer.code: In function ‘int main()’: answer.code:14:16: error: ‘to_string’ was not declared in this scope 14 | num += to_string(i); | ^~~~~~~~~ answer.code:14:16: note: ‘std::to_string’ is only available from C++17 onwards answer.code:15:12: error: ‘stoi’ was not declared in this scope 15 | if(stoi(num)/m*m == stoi(num)){ | ^~~~ answer.code:15:12: note: ‘std::stoi’ is only available from C++11 onwards