运行 ❯
获取你的
自己的
网站
×
改变方向
改变主题,深色/浅色
进入 Spaces
#include <iostream> #include <vector> #include <algorithm> using namespace std; bool greater_than_5(int value) { return value > 5; } int main() { vector<int> numbers = {1, 7, 3, 5, 9, 2}; if (any_of(numbers.begin(), numbers.end(), greater_than_5)) { cout << "Found a value greater than 5"; } else { cout << "No values are greater than 5"; } return 0; }
找到一个大于 5 的值