QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#329842 | #2400. Mult! | ZhaoZiLong | Compile Error | / | / | C++23 | 543b | 2024-02-17 04:39:50 | 2024-02-17 04:39:50 |
Due to the privacy settings of the submitter, you are not allowed to view this code.
Details
answer.code: In function ‘int main(int, char**)’: answer.code:8:5: error: ‘cin’ was not declared in this scope; did you mean ‘std::cin’? 8 | cin >> n ; | ^~~ | std::cin In file included from answer.code:1: /usr/include/c++/13/iostream:62:18: note: ‘std::cin’ declared here 62 | extern istream cin; ///< Linked to standard input | ^~~ answer.code:30:13: error: ‘cout’ was not declared in this scope; did you mean ‘std::cout’? 30 | cout << "mult"; | ^~~~ | std::cout /usr/include/c++/13/iostream:63:18: note: ‘std::cout’ declared here 63 | extern ostream cout; ///< Linked to standard output | ^~~~