Problem | addition |
---|---|
User | haileyc |
Submission Time | 2024-01-29 16:06:48 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
addition.cpp: In function ‘int main()’:
addition.cpp:6:10: error: expected ‘;’ before ‘cout’
6 | cin >> a
| ^
| ;
7 | cout << "b =";
| ~~~~
addition.cpp:8:10: error: expected ‘;’ before ‘c’
8 | cin >> b
| ^
| ;
9 | c = a + b
| ~
addition.cpp:10:15: error: expected ‘}’ at end of input
10 | cout << << c >>
| ^~
addition.cpp:3:11: note: to match this ‘{’
3 | int main(){
| ^