mirror of
https://codeberg.org/andyscott/exercism.git
synced 2024-11-09 13:20:48 -05:00
15 lines
177 B
C
15 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;
|
||
|
}
|