QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#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.
詳細信息
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