Problem | addition |
---|---|
User | JK13 |
Submission Time | 2023-11-08 10:05:05 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
addition.cpp: In function ‘int main()’:
addition.cpp:9:9: error: redeclaration of ‘int a’
9 | int a = 100*8;
| ^
addition.cpp:6:6: note: ‘int a’ previously declared here
6 | int a = 5;
| ^
addition.cpp:10:6: error: redeclaration of ‘int b’
10 | int b = 100*100;
| ^
addition.cpp:7:6: note: ‘int b’ previously declared here
7 | int b = 4;
| ^