How to check leap year in Swift

1 Answer

0 votes
import Foundation

func isLeapYear(year: Int) -> Bool {
    return (year % 4 == 0 && year % 100 != 0) || year % 400 == 0
}

let year = 2024

if isLeapYear(year: year) {
    print("\(year) is a leap year")
} else {
    print("\(year) is not a leap year")
}



/*
run:  
 
2024 is a leap year
 
*/

 



answered Dec 12, 2024 by avibootz
...