加载中...

P5716 【深基3.例9】月份天数

【深基3.例9】月份天数

题目描述

输入年份和月份,输出这一年的这一月有多少天。需要考虑闰年。

输入格式

输入两个正整数,分别表示年份 y 和月数 m,以空格隔开。

输出格式

输出一行一个正整数,表示这个月有多少天。

样例 #1

样例输入 #1

1926 8

样例输出 #1

31

样例 #2

样例输入 #2

2000 2

样例输出 #2

29

提示

数据保证 $1583 \leq y \leq 2020$,$1 \leq m \leq 12$。

提交答案

#include<iostream>
using namespace std;

int main()
{
	//指令写在这
	int y,m;
	cin>>y;//y表示年份
	cin>>m;//n表示月份
	int day[13]={0,31,28,31,30,31,30,31,31,30,31,30,31};
	if((y%4==0&&y%100!=0)||(y%400==0))//判断是否是闰年 
		day[2]=29;//如果是闰年2月份就有29天 
	cout<<day[m]<<endl;//cout<<"这个月,有"<<day[m]<<"天"<<endl;
	return 0;
}
/*
1926 8
31

--------------------------------
Process exited after 3.677 seconds with return value 0
请按任意键继续. . .

2000 2
29

--------------------------------
Process exited after 2.716 seconds with return value 0
请按任意键继续. . .
*/
posted @ 2023-02-06 15:36  bujidao1128  阅读(157)  评论(0编辑  收藏  举报