QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#704307 | #5304. Money Game | MaMengQi | Compile Error | / | / | C++17 | 488b | 2024-11-02 19:43:28 | 2024-11-02 19:43:28 |
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:12:5: error: ‘vector’ was not declared in this scope 12 | vector<long double> A(N); | ^~~~~~ answer.code:3:1: note: ‘std::vector’ is defined in header ‘<vector>’; did you forget to ‘#include <vector>’? 2 | #include <iomanip> +++ |+#include <vector> 3 | answer.code:12:12: error: expected primary-expression before ‘long’ 12 | vector<long double> A(N); | ^~~~ answer.code:15:16: error: ‘A’ was not declared in this scope 15 | cin >> A[i]; | ^