c++对英文名字进行排序 输入5个英文人名,对人名进行排序输出(字典序,升序)。
时间: 2024-03-02 21:50:06 浏览: 150
好的,以下是实现该功能的 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` 函数实现按字典序排序,最后通过循环输出排序结果。
相关问题
c++,用vector对英文名字进行排序 输入5个英文人名,对人名进行排序输出(字典序,升序)。
好的,以下是使用 `vector` 实现该功能的 C++ 代码:
```cpp
#include <iostream>
#include <algorithm>
#include <string>
#include <vector>
using namespace std;
int main() {
const int n = 5;
vector<string> names(n);
// 输入人名
cout << "请输入" << n << "个英文人名:" << endl;
for (int i = 0; i < n; i++) {
getline(cin, names[i]);
}
// 按字典序排序
sort(names.begin(), names.end());
// 输出排序结果
cout << "排序后的结果为:" << endl;
for (int i = 0; i < n; i++) {
cout << names[i] << endl;
}
return 0;
}
```
代码中,我们使用 `vector<string>` 来存储输入的人名,通过循环和 `getline` 函数实现输入,`sort` 函数实现按字典序排序,最后通过循环输出排序结果。需要注意的是,对于 `vector`,我们需要使用 `begin()` 和 `end()` 函数表示其首尾迭代器。
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
```
阅读全文