Problem | addition |
---|---|
User | Roucy |
Submission Time | 2025-06-16 14:13:44 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
addition.cpp:1:1: error: ‘sing’ does not name a type
1 | sing namespace std;
| ^~~~
addition.cpp: In function ‘int main()’:
addition.cpp:4:4: error: expected unqualified-id before ‘<<’ token
4 | int<<x;
| ^~
addition.cpp:5:4: error: expected unqualified-id before ‘<<’ token
5 | int<<y;
| ^~
addition.cpp:6:1: error: ‘cin’ was not declared in this scope
6 | cin<<x;
| ^~~
addition.cpp:6:6: error: ‘x’ was not declared in this scope
6 | cin<<x;
| ^
addition.cpp:7:6: error: ‘y’ was not declared in this scope
7 | cin<<y;
| ^
addition.cpp:8:1: error: ‘cout’ was not declared in this scope
8 | cout<<x+y;
| ^~~~
addition.cpp:8:10: error: expected ‘}’ at end of input
8 | cout<<x+y;
| ^
addition.cpp:3:12: note: to match this ‘{’
3 | int main() {
|