hdu 2133 What day is it

http://acm.split.hdu.edu.cn/showproblem.php?pid=2133


Problem Description
Today is Saturday, 17th Nov,2007. Now, if i tell you a date, can you tell me what day it is ?
 

Input
There are multiply cases.
One line is one case.
There are three integers, year(0<year<10000), month(0<=month<13), day(0<=day<32).
 

Output
Output one line.
if the date is illegal, you should output "illegal". Or, you should output what day it is.
 

Sample Input
  
  
2007 11 17


#include<cstdio>
#include<cstdlib>
#include<math.h>
#include<iostream>
#include<algorithm>
#include<cstring>
#include<string>
#include<set>
#include<vector>
#include<map>
#define ms(x) memset( (x),0,sizeof(x) );
using namespace std;
typedef long long int ll;
int run(int n){
	if( ( n%4 == 0 && n%100!=0 )|| n%400 == 0) return 1;
	return 0;
}
int k[]={0,31,28,31,30,31,30,31,31,30,31,30,31};
int main()
{
//	char s[8][10] = {,,"};
	char ans[8][10] = {
		"Monday","Tuesday"	,"Wednesday","Thursday","Friday","Saturday"	,"Sunday"
	};
	int ry(2007),rm(11),rd(17);
	int y,m,d;
//	int ty=1,tm=1,td=1;
//	int t(0);
//	while(ty < ry) { t += 365+run(ty);ty++; t %= 7;}	
//	while(tm < rm) { t += k[tm]; if(tm == 2 && run(ty)) t++; tm++ ;t%=7;}
//	while(td < rd) { t++,td++;t%=7;}
//	t %= 7;
//	cout<<t<<'\n';
	while(scanf("%d%d%d",&y,&m,&d) != EOF){
		if(k[m] < d){
			if(m == 2&&d == 28 + run(y));
			else {
				puts("illegal");
				continue;
			}
		}
		if(m == 0||y == 0||d==0){
			puts("illegal");
			continue;
		}
		int ty=1,tm=1,td=1;
		int t(0);
		while(ty < y) { t += 365+run(ty);ty++; t %= 7;}	
		while(tm < m) { t += k[tm]; if(tm == 2 && run(ty)) t++; tm++ ;}
		while(td < d) { t++,td++;}
		puts(ans[t%7]);
	}
	return 0;
}


ps

1.很简单的题  出了很多问题,第一个表打错了,第二个 判断闰年2月29号出错了,第三个月日可能出现0没考虑到

       希望以后少出这种问题了


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值