Skip to content

Instantly share code, notes, and snippets.

@omiend
Created December 25, 2014 05:06
Show Gist options
  • Save omiend/0172e63accbae7fd5cc0 to your computer and use it in GitHub Desktop.
Save omiend/0172e63accbae7fd5cc0 to your computer and use it in GitHub Desktop.
うるう年
object Uruu {
def main(args: Array[String]) = {
List.range(1983, 2017) foreach { year =>
println(s"${year} = ${year % 4 == 0 && (year % 100 != 0 || year % 400 == 0)}")
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment