Problem 3nplus1
User BlueSpace
Submission Time 2024-04-20 09:46:37
Score 0
Max Time N/A
Max Memory N/A

Compile Error

3nplus1.cpp: In function ‘int main()’:
3nplus1.cpp:11:10: error: expected ‘;’ before ‘if’
11 | cin >> n
| ^
| ;
12 | if (n % 2 == 0) {
| ~~
3nplus1.cpp:14:7: error: ‘else’ without a previous ‘if’
14 | } else {
| ^~~~
3nplus1.cpp:15:17: error: ‘number’ was not declared in this scope
15 | cout << number << " is odd." << "\n";
| ^~~~~~
3nplus1.cpp:17:10: error: expected ‘;’ before ‘}’ token
17 | return 0
| ^
| ;
18 | }
| ~