Skip to content

Instantly share code, notes, and snippets.

@TheMuellenator
Last active October 23, 2024 18:46
Show Gist options
  • Save TheMuellenator/5343c658efdd46dc04522174fa4f0cd1 to your computer and use it in GitHub Desktop.
Save TheMuellenator/5343c658efdd46dc04522174fa4f0cd1 to your computer and use it in GitHub Desktop.
iOS repl.it - IF Else Challenge Solution
//Don't change this
var aYear = Int(readLine()!)!
func isLeap(year: Int) {
var leap = "NO"
//IF divisible by 4 with no remainders.
if year % 4 == 0 {
leap = "YES"
//Is leap year, unless:
}
if year % 100 == 0 {
leap = "NO"
//Is not leap year, unless:
}
if year % 400 == 0 {
leap = "YES"
//Is leap year.
}
print(leap)
}
//Don't change this
isLeap(year: aYear)
@Shah0651
Copy link

var aYear = 2020

func isLeap(year: Int) {

    if year % 4 == 0 && year % 100 != 0 {
            print("Yes, Leap Year")
        } else if  year % 100 == 0 && year % 400 == 0 {
            print("Yes, A leap year")
        } else {
            print("No, Not a leap year")
        }

    }

isLeap(year: aYear)

Check my answer

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment