运行 ❯
拥有您
自己的
网站
×
更改定位
更改主题,深色/浅色
前往空间
#include <iostream> #include <vector> #include <algorithm> using namespace std; int main() { vector<int> numbers = {1, 7, 3, 5, 9, 2}; auto it = min_element(numbers.begin(), numbers.end()); if (it != numbers.end()) { cout << *it << " is the highest value"; } else { cout << "The vector is empty"; } return 0; }
1 是最低值