Task Description
平年 :
- 西元年除4不可整除
- 西元年除100可整除,且除400不可整除
閏年 :
- 西元年除4可整除,且除100不可整除
- 西元年份除以400可整除
Hint
years.h
打上 function header 以及相關的設定。void
years(
int
year);
years.c
撰寫程式碼後對應上傳。#include "years.h"
void
years(
int
year) {
/ add your code /
}
main.c
這個檔案無法更改也無須上傳。12345678910 #include <stdio.h>
#include <stdlib.h>
#include"years.h"
int
main(){
int
year;
scanf
(
"%d"
, &year);
years(year);
return
0;
}
Input Format
輸入一個西元年
Output Format
輸出年份是閏年還是平年
Sample Input
1 1999
Sample Output
1 1999是平年