Problem | addition |
---|---|
User | Maskaphobia |
Submission Time | 2024-01-31 15:33:05 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
addition.cpp:1:10: error: #include expects "FILENAME" or <FILENAME>
1 | #include iostream
| ^~~~~~~~
addition.cpp: In function ‘int main()’:
addition.cpp:3:10: error: found ‘:’ in nested-name-specifier, expected ‘::’
3 | int a, b:
| ^
| ::
addition.cpp:3:9: error: ‘b’ has not been declared
3 | int a, b:
| ^
addition.cpp:4:12: error: qualified-id in declaration before ‘>>’ token
4 | stdd::cin >> a >> b;
| ^~
addition.cpp:5:16: error: ‘b’ was not declared in this scope
5 | int sum = a + b;
| ^
addition.cpp:6:2: error: ‘stdd’ has not been declared
6 | stdd::cout << sum;
| ^~~~
addition.cpp:7:10: error: expected ‘;’ before ‘}’ token
7 | return 0
| ^
| ;
8 | }
| ~