Problem evenorodd
User Akshar
Submission Time 2024-06-19 10:16:22
Score 0
Max Time N/A
Max Memory N/A

Compile Error

evenorodd.cpp: In function ‘int main()’:
evenorodd.cpp:5:2: error: ‘cin’ was not declared in this scope; did you mean ‘std::cin’?
5 | cin >> x;
| ^~~
| std::cin
In file included from evenorodd.cpp:1:
/usr/include/c++/9/iostream:60:18: note: ‘std::cin’ declared here
60 | extern istream cin; /// Linked to standard input
| ^~~
evenorodd.cpp:7:3: error: ‘cout’ was not declared in this scope; did you mean ‘std::cout’?
7 | cout << "odd" << endl;
| ^~~~
| std::cout
In file included from evenorodd.cpp:1:
/usr/include/c++/9/iostream:61:18: note: ‘std::cout’ declared here
61 | extern ostream cout; /// Linked to standard output
| ^~~~
evenorodd.cpp:7:20: error: ‘endl’ was not declared in this scope; did you mean ‘std::endl’?
7 | cout << "odd" << endl;
| ^~~~
|