Ver Mensaje Individual
  #2 (permalink)  
Antiguo 03/04/2012, 13:52
Avatar de cristian_qc
cristian_qc
 
Fecha de Ingreso: abril-2011
Mensajes: 43
Antigüedad: 13 años, 8 meses
Puntos: 8
Respuesta: Problema año bisiesto en c++

Código C++:
Ver original
  1. int bisiesto( unsigned int a ){
  2.     return ( a % 4 == 0 ? 1 : 0 ) && a % 100 != 0 ? 1 : 0;
  3. }

Saludos.