首页 > 知识精选 >

闰年的计算方法c语言是什么(闰年的计算方法c语言)

发布时间:2023-03-05 12:00:14来源:

大家好,小讯来为大家解答以上的问题。闰年的计算方法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.。

本文到此分享完毕,希望对大家有所帮助。

免责声明:本文为转载,非本网原创内容,不代表本网观点。其原创性以及文中陈述文字和内容未经本站证实,对本文以及其中全部或者部分内容、文字的真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。