QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#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.
详细
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]; | ^