打印日期

题目描述
给出年分m和一年中的第n天,算出第n天是几月几号。

输入描述:
输入包括两个整数y(1<=y<=3000),n(1<=n<=366)。

输出描述:
可能有多组测试数据,对于每组数据,
按 yyyy-mm-dd的格式将输入中对应的日期打印出来。

示例1
输入
2000 3
2000 31
2000 40
2000 60
2000 61
2001 60
输出
2000-01-03
2000-01-31
2000-02-09
2000-02-29
2000-03-01
2001-03-01

代码:

#include<stdio.h>
#include<math.h>
#include<algorithm>
#include<string.h>
#include<iostream>
#include<iomanip>
#include<vector>
#include<map>
#include<set>
#include<stack>
#include<queue>
using namespace std;

bool justicYear(int year){
	if((year % 4 == 0 && year % 100 != 0) || (year % 400 == 0)){
		return true;
	}else{
		return false;
	}
}
int main()
{
	int months[12] = {31,28,31,30,31,30,31,31,30,31,30,31};
	int year,days;
	while(cin >> year >> days){
		bool flag = justicYear(year);
		if(flag){
			months[1] = 29;
		}else{
			months[1] = 28;
		}
		int count = 0;
		while(days > months[count]){
			days -= months[count];
			count++;
		}
		//规范化(也可以写成字符串)
		cout << year << "-";
		if((count + 1) < 10){
			cout << 0;
		} 
		cout << count+1 << "-";
		if(days < 10){
			cout << 0;
		}
		cout << days << endl; 
	}
    return 0;
}  
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值