Problem add1_easy
User Joashhh
Submission Time 2024-04-15 18:23:11
Score 0
Max Time N/A
Max Memory N/A

Compile Error

add1_easy.cpp:2:7: error: expected nested-name-specifier before ‘namesapce’
2 | using namesapce std;
| ^~~~~~~~~
add1_easy.cpp: In function ‘int main()’:
add1_easy.cpp:6:3: error: ‘cin’ was not declared in this scope; did you mean ‘std::cin’?
6 | cin >> n;
| ^~~
| std::cin
In file included from add1_easy.cpp:1:
/usr/include/c++/9/iostream:60:18: note: ‘std::cin’ declared here
60 | extern istream cin; /// Linked to standard input
| ^~~
add1_easy.cpp:7:3: error: ‘cout’ was not declared in this scope; did you mean ‘std::cout’?
7 | cout << n+1 << endl;
| ^~~~
| std::cout
In file included from add1_easy.cpp:1:
/usr/include/c++/9/iostream:61:18: note: ‘std::cout’ declared here
61 | extern ostream cout; /// Linked to standard output
| ^~~~
add1_easy.cpp:7:18: error: ‘endl’ was not declared in this sc