- #include
- using namespace std;
- int main()
- {
- string s[25];//string类数组
- int n;
- cin >> n;
- for(int i = 1; i <= n; ++i)
- cin >> s[i];
- sort(s+1, s+1+n);//默认升序 调用函数默认排序
- for(int i = 1; i <= n; ++i)
- cout << s[i] << endl;
- return 0;
- }
本题用到的知识点有:字符串的处理思路,字符串处理函数。