Problem 3nplus1
User Guest1234
Submission Time 2026-03-19 11:31:00
Score 0
Max Time N/A
Max Memory N/A

Compile Error

3nplus1.cpp: In function ‘int main()’:
3nplus1.cpp:5:17: error: expected ‘;’ before ‘while’
5 | int a; cin >> a
| ^
| ;
6 | while True:
| ~~~~~
3nplus1.cpp:10:3: error: ‘else’ without a previous ‘if’
10 | else{
| ^~~~
3nplus1.cpp:11:16: error: expected ‘;’ before ‘}’ token
11 | a = int(a/2)
| ^
| ;
12 | }
| ~
3nplus1.cpp:13:11: error: expected ‘;’ before ‘return’
13 | cout << a
| ^
| ;
14 | return 0;
| ~~~~~~