运行 ❯
获取您自己的网站
×
更改方向
更改主题,深色/浅色
进入 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}; int amount = count_if(numbers.begin(), numbers.end(), greater_than_5); cout << "There are " << amount << " values greater than 5."; return 0; }
有两个值大于 5。