Ver Mensaje Individual
  #3 (permalink)  
Antiguo 03/04/2012, 13:59
drd222
 
Fecha de Ingreso: marzo-2012
Mensajes: 30
Antigüedad: 12 años, 9 meses
Puntos: 0
Respuesta: Problema año bisiesto en c++

Cita:
Iniciado por cristian_qc Ver Mensaje
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.
Pues con ese codigo me sale que 2000 no es un año bisiesto.... pero el 2000 si es un año bisiesto =S