Problem | sort |
---|---|
User | Daddy |
Submission Time | 2023-12-09 10:34:49 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
sort.cpp:2:17: error: ‘stds’ is not a namespace-name
2 | using namespace stds;
| ^~~~
sort.cpp: In function ‘int main()’:
sort.cpp:14:5: error: ‘ios_base’ has not been declared
14 | ios_base::sync_with_stdio(false);
| ^~~~~~~~
sort.cpp:15:2: error: ‘cin’ was not declared in this scope; did you mean ‘std::cin’?
15 | cin.tie(0);
| ^~~
| std::cin
In file included from /usr/include/x86_64-linux-gnu/c++/9/bits/stdc++.h:75,
from sort.cpp:1:
/usr/include/c++/9/iostream:60:18: note: ‘std::cin’ declared here
60 | extern istream cin; /// Linked to standard input
| ^~~
sort.cpp:16:2: error: ‘cout’ was not declared in this scope; did you mean ‘std::cout’?
16 | cout.tie(0);
| ^~~~
| std::cout
In file included from /usr/include/x86_64-linux-gnu/c++/9/bits/stdc++.h:75,
from sort.cpp:1:
/usr/inclu