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

Compile Error

evenorodd.cpp: In function ‘int main()’:
evenorodd.cpp:5:9: error: lvalue required as left operand of assignment
5 | if(x%2=1){
| ^
evenorodd.cpp:6:3: error: ‘cout’ was not declared in this scope; did you mean ‘std::cout’?
6 | 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:6:20: error: ‘endl’ was not declared in this scope; did you mean ‘std::endl’?
6 | cout << "odd" << endl;
| ^~~~
| std::endl
In file included from /usr/include/c++/9/iostream:39,
from evenorodd.cpp:1:
/usr/include/c++/9/ostream:599:5: note: ‘std::endl’ declared here
599 | endl(basic_ostream<_CharT, _Traits>& __o