Problem | palindromicfizzbuzz |
---|---|
User | harish208 |
Submission Time | 2023-02-07 11:51:23 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
palindromicfizzbuzz.cpp: In function ‘int main(int, const char**)’:
palindromicfizzbuzz.cpp:4:5: error: ‘cin’ was not declared in this scope; did you mean ‘std::cin’?
4 | cin >> E >> S;
| ^~~
| std::cin
In file included from palindromicfizzbuzz.cpp:1:
/usr/include/c++/9/iostream:60:18: note: ‘std::cin’ declared here
60 | extern istream cin; /// Linked to standard input
| ^~~
palindromicfizzbuzz.cpp:6:9: error: ‘cout’ was not declared in this scope; did you mean ‘std::cout’?
6 | cout << "Palindrome!";
| ^~~~
| std::cout
In file included from palindromicfizzbuzz.cpp:1:
/usr/include/c++/9/iostream:61:18: note: ‘std::cout’ declared here
61 | extern ostream cout; /// Linked to standard output
| ^~~~