Problem | gotoschool |
---|---|
User | Kanish |
Submission Time | 2023-11-08 15:47:26 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
gotoschool.cpp: In function ‘int main()’:
gotoschool.cpp:6:1: error: ‘cin’ was not declared in this scope; did you mean ‘std::cin’?
6 | cin >> n;
| ^~~
| std::cin
In file included from gotoschool.cpp:1:
/usr/include/c++/9/iostream:60:18: note: ‘std::cin’ declared here
60 | extern istream cin; /// Linked to standard input
| ^~~
gotoschool.cpp:13:1: error: ‘cout’ was not declared in this scope; did you mean ‘std::cout’?
13 | cout << A[i] << " ";
| ^~~~
| std::cout
In file included from gotoschool.cpp:1:
/usr/include/c++/9/iostream:61:18: note: ‘std::cout’ declared here
61 | extern ostream cout; /// Linked to standard output
| ^~~~