Problem | 3nplus1 |
---|---|
User | KingKian |
Submission Time | 2023-09-13 15:53:18 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
3nplus1.cpp:2:20: error: expected ‘;’ before ‘int’
2 | using namespace std
| ^
| ;
3 |
4 | int main() {
| ~~~
3nplus1.cpp: In function ‘int main()’:
3nplus1.cpp:7:11: error: expected ‘(’ before ‘num’
7 | while num != 1
| ^~~
| (
3nplus1.cpp:7:19: error: expected ‘)’ before ‘{’ token
7 | while num != 1
| ~~~ ^
| )
8 | {
| ~
3nplus1.cpp:9:20: error: expected ‘;’ before ‘if’
9 | cout << num
| ^
| ;
10 | if (num % 2 == 1)
| ~~
3nplus1.cpp:14:9: error: ‘else’ without a previous ‘if’
14 | else
| ^~~~