mirror of
https://codeberg.org/andyscott/exercism.git
synced 2024-11-09 21:30:47 -05:00
14 lines
177 B
C
14 lines
177 B
C
#include "leap.h"
|
|
|
|
bool leap_year(int year) {
|
|
|
|
if (year % 4 != 0) {
|
|
return false;
|
|
}
|
|
|
|
if (year % 100 == 0 && year % 400 != 0) {
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|