|
发表于 2023-11-8 19:54:36
|
显示全部楼层
对于输入三个整数,按由小到大的顺序输出的问题,可以使用以下的C++代码来解决:
#include <iostream>
#include <algorithm>
int main() {
int a, b, c;
std::cout << "请输入三个整数:" << std::endl;
std::cin >> a >> b >> c;
int arr[3] = {a, b, c};
std::sort(arr, arr + 3);
std::cout << "按由小到大的顺序输出:" << std::endl;
for (int i = 0; i < 3; i++) {
std::cout << arr[ i] << " ";
}
std::cout << std::endl;
return 0;
}
对于输入三个字符串,按由小到大的顺序输出的问题,可以使用以下的C++代码来解决:
#include <iostream>
#include <algorithm>
#include <string>
int main() {
std::string str1, str2, str3;
std::cout << "请输入三个字符串:" << std::endl;
std::cin >> str1 >> str2 >> str3;
std::string arr[3] = {str1, str2, str3};
std::sort(arr, arr + 3);
std::cout << "按由小到大的顺序输出:" << std::endl;
for (int i = 0; i < 3; i++) {
std::cout << arr[ i] << " ";
}
std::cout << std::endl;
return 0;
}
以上两段代码分别使用了 std::sort 函数对整数数组和字符串数组进行排序,然后使用 for 循环遍历数组并输出排序后的结果。 |
|