Problem evenorodd
User dieunq1309
Submission Time 2023-03-22 14:13:02
Score 0
Max Time N/A
Max Memory N/A

Compile Error

evenorodd.cpp:2:7: error: expected nested-name-specifier before ‘namepsace’
2 | using namepsace std;
| ^~~~~~~~~
evenorodd.cpp: In function ‘int main()’:
evenorodd.cpp:8:2: error: ‘cin’ was not declared in this scope; did you mean ‘std::cin’?
8 | cin >> a;
| ^~~
| 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:9:12: error: lvalue required as left operand of assignment
9 | if (a%2 = 0)
| ^
evenorodd.cpp:11:3: error: ‘cout’ was not declared in this scope; did you mean ‘std::cout’?
11 | cout << "Even";
| ^~~~
| 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 s