| Problem | addition |
|---|---|
| User | yq |
| Submission Time | 2026-06-22 20:19:41 |
| Score | 0 |
| Max Time | N/A |
| Max Memory | N/A |
Owl Get a Life
addition.cpp: In function ‘int main()’:
addition.cpp:7:13: error: expected ‘)’ before ‘;’ token
7 | if(a=4;b=5;) cout<<9;
| ~ ^
| )
addition.cpp:7:14: error: expected primary-expression before ‘)’ token
7 | if(a=4;b=5;) cout<<9;
| ^
addition.cpp:8:4: error: ‘else’ without a previous ‘if’
8 | else {cout<<a+b;
| ^~~~
addition.cpp:9:2: error: expected ‘}’ at end of input
9 | }
| ^
addition.cpp:4:12: note: to match this ‘{’
4 | int main(){
| ^