#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: Bruno Zeballos int DNI=43114431; //---:---<*>---:---<*>---:---<*>---:---<*>---:---<*> bool esPar(int x){ return x % 2 == 0; } bool tiene3par(set&S){ auto it = S.begin(); int contPar = 0; while(it!=S.end()){ if(esPar(*it)) contPar++; it++; } return contPar >= 3; } void set3par(vector> &VS, set &S) { // COMPLETAR AQUI... for(int i=0;i---:---<*>- FINALIZA CODIGO FUNCION --:---<*>---:---<*>---:---<*> int main() { Eval ev; int vrbs=0; ev.eval<1>(set3par,vrbs); return 0; }