您现在的位置是:首页 > 精选知识 >正文

闰年的计算方法三年级(闰年的计算方法c语言)

发布时间:2022-10-07 23:15:44宗政薇茜来源:

导读您好,现在渔夫来为大家解答以上的问题。闰年的计算方法三年级,闰年的计算方法c语言相信很多小伙伴还不知道,现在让我们一起来看看吧!1、#i...

您好,现在渔夫来为大家解答以上的问题。闰年的计算方法三年级,闰年的计算方法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.。

本文就为大家分享到这里,希望小伙伴们会喜欢。

标签:

上一篇
下一篇

最新文章