沉浸式刷题(5)闰年的判断

沉浸式刷题(5)闰年的判断_第1张图片

1.题目分析

要判断年份是否为闰年,方法为年份可以被4或者400整除,可用if else语句进行判断

#include
int main()
{
  int n;
  printf("请输入要判断的年份:");
  scanf("%d",&n);
  if(n%4==0&&n%400!=0)
  printf("1");
  else if(n%400==0)
  printf("1");
  else
  printf("0");
  return 0;
}

你可能感兴趣的:(算法,c++,数据结构)