| Problem | evenorodd |
|---|---|
| User | rain127 |
| Submission Time | 2025-12-03 13:29:26 |
| Score | 0 |
| Max Time | N/A |
| Max Memory | N/A |
Owl Get a Life
evenorodd.cpp: In function ‘int main()’:
evenorodd.cpp:7:19: error: expected ‘:’ before string constant
7 | (a%2 == 0) ? cout "Even" : "Odd";
| ^~~~~~~
| :
evenorodd.cpp:7:13: error: operands to ?: have different types ‘std::ostream’ {aka ‘std::basic_ostream<char>’} and ‘const char [5]’
7 | (a%2 == 0) ? cout "Even" : "Odd";
| ~~~~~~~~~~~^~~~~~~~~~~~~
evenorodd.cpp:9:10: error: ‘result’ was not declared in this scope
9 | cout << result;
| ^~~~~~