Problem | exhibition2 |
---|---|
User | plka |
Submission Time | 2025-02-19 13:35:58 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
exhibition2.cpp: In function ‘int main()’:
exhibition2.cpp:16:5: error: ‘vector’ was not declared in this scope
16 | vector<Artwork> artworks(N);
| ^~~~~~
exhibition2.cpp:2:1: note: ‘std::vector’ is defined in header ‘<vector>’; did you forget to ‘#include <vector>’?
1 | #include <iostream>
+++ |+#include <vector>
2 | using namespace std;
exhibition2.cpp:16:19: error: expected primary-expression before ‘>’ token
16 | vector<Artwork> artworks(N);
| ^
exhibition2.cpp:16:21: error: ‘artworks’ was not declared in this scope; did you mean ‘Artwork’?
16 | vector<Artwork> artworks(N);
| ^~~~~~~~
| Artwork
exhibition2.cpp:22:5: error: ‘sort’ was not declared in this scope; did you mean ‘qsort’?
22 | sort(artworks.begin(), artworks.end(), [](const Artwork &a, const Artwork &b) {