#define USECHRONO #undef HAVE_MPI #include "eval.hpp" #include #include #include #include using namespace aed; using namespace std; //---:---<*>---:---<*>- COMIENZA CODIGO FUNCION --:---<*>---:---<*>---:---<*> // COMPLETAR DNI y NOMBRE AQUI: // Nombre: Botta Ángela int DNI=43381441; //---:---<*>---:---<*>---:---<*>---:---<*>---:---<*> bool cont_num_pares(set&s){ int cont=0; set::iterator it; for( it=s.begin();it!=s.end();it++){ if(*it%2==0){ cont++; } } if(cont>=3){ return true; }else{ return false; } } void set3par(vector> &VS, set &S) { S.clear(); for(int i=0;i---:---<*>- FINALIZA CODIGO FUNCION --:---<*>---:---<*>---:---<*> int main() { Eval ev; int vrbs=0; ev.eval<1>(set3par,vrbs); return 0; }