lectura de
#include <stdio.h>

  int main(void){
    int year;
    
    printf("Ingrese un año para saber si es bisiesto: ");
    scanf("%d", &year);

    if (year%4 == 0 && (year%400 == 0 || year%100 != 0)){
      printf("Es Bisiesto\n");
    }else{
      printf("No es Bisiesto\n");
    }
    
    return 0;
  }
Blog Logo

Juan Pablo Escalona G.


Publicado el

comments powered by Disqus
Image

JPEG {codes}

Códigos azarosos en múltiples lenguajes, JavaScript, Ruby, C, Python. Bienvenidos aquellos que quieran aprender.

Volver al inicio