Ver Mensaje Individual
  #2  
Antiguo 31-03-2005
Avatar de OSKR
OSKR OSKR is offline
Miembro
 
Registrado: nov 2004
Ubicación: San Cristóbal/Táchira/Venezuela
Posts: 389
Reputación: 22
OSKR Va por buen camino
Si existe pero no recuerdo cual es, esto puede servirte:

int LastDayMonth(int mes, int anno)
{ if(mes==4 || mes==6 || mes==9 || mes==11)
return 30;
if(mes==2)
return (anno%4 ? 28: 29);
return 31;
}
Responder Con Cita