我爱橙 发表于 2022-2-23 14:46:37

NO.117计算闰年

本帖最后由 我爱橙 于 2022-2-25 10:20 编辑

#include <stdio.h>
#include <math.h>

int main()
{
      int year,n;

      printf("请输入一个年份:");
      scanf("%d", &year);

      n=(year % 4 == 0 && year % 100 != 0) || (year % 400 == 0);

      printf("%d是闰年:%d\n", year, n);

      return 0;
}


虽然是复制粘贴的成果,还是很开心,虽然还没懂year % 100 != 0的计算顺序QAQ

但加了个前提说明就又错误了QAQ

#include <stdio.h>
#include <math.h>

int main()
{
      int year,n;
      
                printf("某一年份如果符合下边 A 或 B 其中一个,我们称之为闰年:
                A. 能被 4 整除,但不能被 100 整除;
                B. 能被 400 整除。");

      printf("请输入一个年份:");
      scanf("%d", &year);

      n=(year % 4 == 0 && year % 100 != 0) || (year % 400 == 0);

      printf("%d是闰年:%d\n", year, n);

      return 0;
}
页: [1]
查看完整版本: NO.117计算闰年