Problem | guessproblem |
---|---|
User | P55D2K |
Submission Time | 2023-04-26 17:11:29 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
guessproblem.cpp: In function ‘int main()’:
guessproblem.cpp:2:18: error: ‘cin’ was not declared in this scope; did you mean ‘std::cin’?
2 | int main(){int n;cin>>n;cout<<"pancake";}
| ^~~
| std::cin
In file included from guessproblem.cpp:1:
/usr/include/c++/9/iostream:60:18: note: ‘std::cin’ declared here
60 | extern istream cin; /// Linked to standard input
| ^~~
guessproblem.cpp:2:25: error: ‘cout’ was not declared in this scope; did you mean ‘std::cout’?
2 | int main(){int n;cin>>n;cout<<"pancake";}
| ^~~~
| std::cout
In file included from guessproblem.cpp:1:
/usr/include/c++/9/iostream:61:18: note: ‘std::cout’ declared here
61 | extern ostream cout; /// Linked to standard output
| ^~~~