107. 閏年平年判斷

I'm a slow walker, but I never walk backwards.

Task Description
平年 :

  1. 西元年除4不可整除
  2. 西元年除100可整除,且除400不可整除

閏年 :

  1. 西元年除4可整除,且除100不可整除
  2. 西元年份除以400可整除

Hint

years.h

打上 function header 以及相關的設定。

void years(int year);

years.c

撰寫程式碼後對應上傳。

#include "years.h"
void years(int year) {
    / add your code /
}

main.c

這個檔案無法更改也無須上傳。

1
2
3
4
5
6
7
8
9
10
#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是平年

Submit

Login

Testdata Set

Download Testdata