c++输出最小值的方法是什么

c++
840
2024/5/31 16:48:20
栏目: 编程语言
开发者测试专用服务器限时活动,0元免费领,库存有限,领完即止! 点击查看>>

在C++中,可以使用STL中的min_element函数来输出最小值。这个函数需要在#include <algorithm>头文件中使用。下面是一个示例代码:

#include <iostream>
#include <algorithm>
#include <vector>

int main() {
    std::vector<int> numbers = {4, 2, 7, 1, 9, 5};
    
    auto min_value = *std::min_element(numbers.begin(), numbers.end());
    
    std::cout << "The minimum value is: " << min_value << std::endl;

    return 0;
}

运行上面的代码,将会输出数组numbers中的最小值。

辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>

推荐阅读: 如何在C++中实现条件性文件覆盖