王鹿其 发表于 2023-11-8 19:53:58

c++

〈1〉输入三个整数,按由小到大的顺序输出,然后将程序改为:输入三个字符串,按由小到大的顺序输出。

isdkz 发表于 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 = {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 = {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 循环遍历数组并输出排序后的结果。
页: [1]
查看完整版本: c++