Skip to content

Instantly share code, notes, and snippets.

@caiquecastro
Created March 9, 2014 01:24
Show Gist options
  • Save caiquecastro/9441627 to your computer and use it in GitHub Desktop.
Save caiquecastro/9441627 to your computer and use it in GitHub Desktop.
Anos Bissextos em Negrito
public class Bissexto {
public static void main(String[] args) {
for(int i = 1800; i <= 2100; i++) {
if(i % 4 == 0 && i % 100 != 0 || i % 400 == 0) {
System.out.print("\033[1m" + i + "\033[0m ");
} else {
System.out.print(i + " ");
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment