Problem | choochoo |
---|---|
User | lingfei123 |
Submission Time | 2023-11-15 09:21:05 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
choochoo.cpp: In function ‘int main()’:
choochoo.cpp:6:13: error: lvalue required as left operand of assignment
6 | n % 2 = 1;
| ^
choochoo.cpp:7:24: error: expected ‘;’ before ‘int’
7 | cout << "choo CHOO"
| ^
| ;
8 | int n = 2;
| ~~~
choochoo.cpp:9:13: error: lvalue required as left operand of assignment
9 | n % 2 = 0;
| ^
choochoo.cpp:10:24: error: expected ‘;’ before ‘return’
10 | cout << "CHOO choo"
| ^
| ;
11 | return 0;
| ~~~~~~