Bisiesto.java 770 Bytes
Newer Older
Joel Florentin committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
import java.io.Console;

public class Bisiesto {
    public static void main(String[] args) {
        Console cons = System.console();
        String anoS;
        int ano;
        do {
            anoS = cons.readLine("Introduzca el ano que desea averiguar si es bisiesto o no. Introduzca 0 para salir\n");
            ano = Integer.parseInt(anoS);
            if(!(ano>=1960 && ano<=2021)){
                System.out.println("Introduzca un ano entre 1960 y 2021");
                continue;
            }
            if (ano%4 == 0 && (ano%100!=0 || ano%400==0)) {
                System.out.println("Es bisiesto");
            }
            else{
                System.out.println("No es bisiesto");
            }

        } while (!anoS.equals("0"));    

    }
}