求闰年

2022-06-28 19:01:37 浏览数 (1)

本文最后更新于 1163 天前,其中的信息可能已经有所发展或是发生改变。

代码语言:javascript复制
#include<stdio.h> 
int main()
{
	int year,month;
	printf("请输入年份");
	scanf("%d",&year);
	printf("请输入月份");
	scanf("%d",&month);
	if(year@0==0||(year%4==0&&year0!=0))
	    printf("该年是闰年n");
	else
	    printf("该年不是闰年n");
	if(0<month&&month<=3)
	    printf("该月份属于春季n");
	else
	{
		if(3<month&&month<=6)
	    printf("该月份属于夏季n");
	    else
	    {
	    	if(6<month&&month<=9)
	        printf("该月份属于秋季n");
	        else
	        printf("该月份属于冬季n");
	    }
	}
	if(month==1||month==3||month==5||month==7||month==8||month==10||month==12)
	printf("该月有31天n");
	else
	{
		if(month==4||month==6||month==9||month==11)
		    printf("该月有30天n");
		else
		{
			if(year@0==0||(year%4==0&&year0!=0))
			    printf("该月有29天n");
			else
			    printf("该月有28天n");
		}
	}
}

Post Views: 230

0 人点赞