运行 ❯
获取自己的
网站
×
变更方向
变更主题,深色/浅色
前往 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 = lower_bound(numbers.begin(), numbers.end(), 4); if (it != numbers.end()) { cout << *it << " is the first value at or above 4"; } else { cout << "No elements found at or above the lower bound"; } return 0; }
5 是第一个在 4 或以上的值