Skip to content

Instantly share code, notes, and snippets.

@victorvaz
Last active March 14, 2016 16:56
Show Gist options
  • Save victorvaz/2ad7bd1ef006833401d5 to your computer and use it in GitHub Desktop.
Save victorvaz/2ad7bd1ef006833401d5 to your computer and use it in GitHub Desktop.
package datanojava;
import java.util.GregorianCalendar;
public class AnoBissexto {
public static void main (String[] args) {
GregorianCalendar gc = new GregorianCalendar();
System.out.println(gc.isLeapYear(2015)); // false. Não é bissexto.
System.out.println(gc.isLeapYear(2016)); // true. É bissexto.
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment