Sophie

Sophie

distrib > Mandriva > 9.1 > ppc > by-pkgid > b9ba69a436161613d8fb030c8c726a8e > files > 373

spirit-1.5.1-2mdk.noarch.rpm

#include <vector>
#include <algorithm>
#include <iostream>

using namespace std;

bool
is_odd(int arg1)
{
    return arg1 % 2 == 1;
}

int
main()
{
    int init[] = { 2, 10, 4, 5, 1, 6, 8, 3, 9, 7 };
    vector<int> c(init, init + 10);
    typedef vector<int>::iterator iterator;

    //  Find the first odd number in container c
    iterator it = find_if(c.begin(), c.end(), &is_odd);

    if (it != c.end())
        cout << *it;    //  if found, print the result
    return 0;
}