bisiesto java

Solutions on MaxInterview for bisiesto java by the best coders in the world

showing results for - "bisiesto java"
Stéphane
30 Jul 2020
1import java.util.Scanner;
2
3public class Bisiesto {
4
5	public static void main(String[] args) {
6		Scanner teclado = new Scanner(System.in);
7		
8		//D
9		
10		int ano = 0;
11		String msg = "Introduza un ano: ";
12		
13		//E
14		
15		System.out.println(msg);
16		ano = teclado.nextInt();
17		
18		//P
19		
20		if ((ano%400 == 0) && (ano%100 != 0|| ano%400 == 0)){
21			msg = "es";
22		}
23		else {
24			msg = "no es";
25		}
26		
27		//S
28
29		System.out.println(msg);
30	}
31
32}
33