闰年计算公式c语言 闰年的计算方法c语言

潘美娥
导读 今天来聊聊关于闰年计算公式c语言,闰年的计算方法c语言的文章,现在就为大家来简单介绍下闰年计算公式c语言,闰年的计算方法c语言,希望对

今天来聊聊关于闰年计算公式c语言,闰年的计算方法c语言的文章,现在就为大家来简单介绍下闰年计算公式c语言,闰年的计算方法c语言,希望对各位小伙伴们有所帮助。

1、#include    int main(int argc, char **argv) {      int startY = 0;      int endY   = 0;      int i      = 0;      printf("Please Input start and end year [a,b]: ");      scanf("%d,%d", &startY, &endY);        if (endY < startY) {          printf("Input error.");          return -1;      }        if (endY < 0 || startY < 0) {          printf("Input  Error.");          return  -1;      }          for (i = startY; i <= endY; i++) {          if ((0 == i % 4 && 0 != i % 100) ||                  (0 == i % 100 && 0 == i % 400))          {              printf("the [%d] is Leap year.", i);          }      }      return 0;  } // 输出 ase Input start and end year [a,b]: 2000,2016the [2000] is Leap year.the [2004] is Leap year.the [2008] is Leap year.the [2012] is Leap year.the [2016] is Leap year.。

相信通过闰年的计算方法c语言这篇文章能帮到你,在和好朋友分享的时候,也欢迎感兴趣小伙伴们一起来探讨。

标签:

免责声明:本文由用户上传,如有侵权请联系删除!