Problem psle
User Tianrui
Submission Time 2024-03-25 16:37:48
Score 0
Max Time N/A
Max Memory N/A

Compile Error

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