Problem | area_noi |
---|---|
User | n |
Submission Time | 2024-02-22 19:40:00 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
area_noi.cpp: In function ‘int main()’:
area_noi.cpp:27:5: error: expected initializer before ‘std’
27 | std::cin >> n;
| ^~~
area_noi.cpp:29:31: error: ‘n’ was not declared in this scope
29 | std::vector<Frame> frames(n);
| ^
area_noi.cpp:38:4: error: ‘cout’ was not declared in this scope; did you mean ‘std::cout’?
38 | cout << largestArea << std::endl;
| ^~~~
| std::cout
In file included from area_noi.cpp:1:
/usr/include/c++/9/iostream:61:18: note: ‘std::cout’ declared here
61 | extern ostream cout; /// Linked to standard output
| ^~~~