Problem addition
User nutella
Submission Time 2024-06-24 14:17:25
Score 0
Max Time N/A
Max Memory N/A

Compile Error

addition.cpp:1:2: error: invalid preprocessing directive #includes; did you mean #include?
1 | #includes <bits/stdc++.h>
| ^~~~~~~~
| include
addition.cpp: In function ‘int main()’:
addition.cpp:6:13: error: expected unqualified-id before ‘int’
6 | int b = 8, int c =1 0;
| ^~~
addition.cpp:7:23: error: ‘c’ was not declared in this scope
7 | int d = ((b+12)/2) - c;
| ^
addition.cpp:9:10: error: expected ‘}’ at end of input
9 | return 0;
| ^
addition.cpp:3:13: note: to match this ‘{’
3 | int main () {
| ^