在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
中的最小值。