/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package year; /** * * @author user */ public class Yearbisiesto { public static void main(String[] args) { System.out.println("Mostrar los años bisiestos desde 1960 hasta este año: "); int bisiesto_year = 1960; do{ if(bisiesto_year%100 == 0){ if(bisiesto_year%400 == 0){ System.out.println(bisiesto_year); } }else{ System.out.println(bisiesto_year); } bisiesto_year += 4; }while(bisiesto_year<2021); // TODO code application logic here } } /** * @param args the command line arguments */