运行 ❯
获取您的
自己的
网站
×
更改方向
更改主题,浅色/深色
转到 Spaces
#include <iostream> #include <vector> #include <algorithm> using namespace std; int main() { vector<int> numbers = {1, 7, 3, 5, 9, 2}; sort(numbers.begin(), numbers.end()); auto it = upper_bound(numbers.begin(), numbers.end(), 7); if (it != numbers.end()) { cout << *it << " is the first value greater than 7"; } else { cout << "No elements found above the upper bound"; } return 0; }
9 是大于 7 的第一个值