输入多个英文人名,以回车符结束,人名间以半角逗号( , )分隔,对这些人名进行升序排序并输出。
时间: 2023-04-27 08:05:07 浏览: 387
可以使用Python语言来实现这个功能,具体代码如下:
```python
# 输入多个英文人名,以回车符结束,人名间以半角逗号( , )分隔
names = input().split(',')
# 对这些人名进行升序排序
names.sort()
# 输出排序后的结果
print(','.join(names))
```
使用时,可以在命令行或者Python交互式环境中输入多个英文人名,以回车符结束,人名间以半角逗号( , )分隔,然后运行上述代码即可得到升序排序后的结果。
相关问题
C++题目51: 对英文名字进行排序 输入5个英文人名,对人名进行排序输出(字典序,升序)。 【输入形式】 5个英文人名 【输出形式】 排序后的人名
好的,这是一个简单的排序问题,可以使用C++中的sort函数进行排序。以下是代码实现:
```c++
#include <iostream>
#include <string>
#include <algorithm>
using namespace std;
int main()
{
string names[5];
cout << "请输入5个英文人名:" << endl;
for(int i=0; i<5; i++)
{
cin >> names[i];
}
sort(names, names+5);
cout << "排序后的人名为:" << endl;
for(int i=0; i<5; i++)
{
cout << names[i] << endl;
}
return 0;
}
```
运行结果:
```
请输入5个英文人名:
Tom Jerry Alice Bob David
排序后的人名为:
Alice
Bob
David
Jerry
Tom
```
c++对英文名字进行排序 输入5个英文人名,对人名进行排序输出(字典序,升序)。
好的,以下是实现该功能的 C++ 代码:
```cpp
#include <iostream>
#include <algorithm>
#include <string>
using namespace std;
int main() {
const int n = 5;
string names[n];
// 输入人名
cout << "请输入" << n << "个英文人名:" << endl;
for (int i = 0; i < n; i++) {
getline(cin, names[i]);
}
// 按字典序排序
sort(names, names + n);
// 输出排序结果
cout << "排序后的结果为:" << endl;
for (int i = 0; i < n; i++) {
cout << names[i] << endl;
}
return 0;
}
```
代码中,我们首先定义了一个长度为 5 的字符串数组 `names` 来存储输入的人名。然后通过循环和 `getline` 函数来实现输入,`sort` 函数实现按字典序排序,最后通过循环输出排序结果。
阅读全文