Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,945 questions

51,886 answers

573 users

How to find the first positive element in a vector with C++

1 Answer

0 votes
#include <algorithm>
#include <iostream>
#include <vector>

auto get_first_positive_element(const std::vector<int> &vec) {
    const auto is_positive = [](const auto &x) { return x > 0; };
    
    auto first_positive = std::find_if (
	                    vec.cbegin(),
	                    vec.cend(),
	                    is_positive);

	return *first_positive;          
}
  
int main() {
    const std::vector<int> vec = {-1, -5, -8, 7, 4, 0, -9};
       
    std::cout << get_first_positive_element(vec);
}
  
  
  
  
/*
run:
    
7
    
*/

 



answered Dec 7, 2023 by avibootz
...