import javax.swing.*; class AnnoBisestile { public static void main(String[] args) { String stringaInput; int anno; stringaInput = JOptionPane.showInputDialog("Inserisci l'anno."); anno = Integer.parseInt(stringaInput); if( (anno > 1582) && (anno % 4 == 0) && ((anno % 100 != 0) || (anno % 400 == 0)) ) JOptionPane.showMessageDialog(null, "Il " + anno + " è un anno bisestile."); else JOptionPane.showMessageDialog(null, "Il " + anno + " NON è un anno bisestile."); System.exit(0); } }