Corso Live Part-time Su Fondamenti Di Java › Forum › Java › Lezione 11, esercizio 6 › Rispondi a: Lezione 11, esercizio 6
4 Marzo 2022 alle 11:40
#5748
Lux
Partecipante
::
Scanner scan = new Scanner (System.in);
System.out.println(” Inserisci un anno per sapere se è bisestile “);
int Anno = scan.nextInt();
if (Anno % 400 == 0 ){
System.out.println(” È un anno bisestile “);
}else if (Anno % 4 == 0 && Anno % 100 != 0) {
System.out.println(” È un anno bisestile “);
}else {
System.out.println(“Non è un anno bisestile “);
}
Comunque io ho fatto così, forse ti è di aiuto. Buona giornata