Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
99485 | 王昭涵 | 单词排序 | C++ | 通过 | 100 | 0 MS | 248 KB | 494 | 2023-08-22 21:14:39 |
#include<string> #include<vector> #include<sstream> #include<iostream> #include<algorithm> using namespace std; int main() { vector<string>v; string s, t; stringstream r; getline(cin, s); for (int i{}; i < s.size(); i++) { if (s[i] == '!' || s[i] == '.') break; if (s[i] == ',') s[i] = ' '; t += s[i]; } r << t; while (r >> s) v.push_back(s); sort(begin(v), end(v)); cout << v.size() << endl; for (auto x : v) cout << x << endl; return 0; }