0_0_39377350_3370.cpp: In function 'int main()':
0_0_39377350_3370.cpp:4:5: error: 'string' was not declared in this scope
4 | string s;
| ^~~~~~
0_0_39377350_3370.cpp:1:1: note: 'std::string' is defined in header '<string>'; did you forget to '#include <string>'?
+++ |+#include <string>
1 |
0_0_39377350_3370.cpp:5:12: error: 'cin' was not declared in this scope
5 | while (cin >> s && !s.empty()) {
| ^~~
0_0_39377350_3370.cpp:1:1: note: 'std::cin' is defined in header '<iostream>'; did you forget to '#include <iostream>'?
+++ |+#include <iostream>
1 |
0_0_39377350_3370.cpp:5:19: error: 's' was not declared in this scope
5 | while (cin >> s && !s.empty()) {
| ^
0_0_39377350_3370.cpp:6:9: error: 'sort' was not declared in this scope; did you mean 'short'?
6 | sort(s.begin(), s.end());
| ^~~~
| short
0_0_39377350_3370.cpp:7:9: error: 'cout' was not declared in this scope
7 | cout << s[0] << " " << s[1] << " " << s[2] << "\n";
| ^~~~
0_0_39377350_3370.cpp:7:9: note: 'std::cout' is defined in header '<iostream>'; did you forget to '#include <iostream>'?
|