摘要: <algorithm> any_of 检查一个整数数组中是否存在偶数。 bool ans = std::any_of(A.begin(), A.end(), [](int x) { return x % 2 == 0; }); all_of 检查一个整数数组中的所有元素是否都大于 \(0\)。 bo 阅读全文
posted @ 2025-06-05 12:33 Lucius7 阅读(13) 评论(0) 推荐(0)