博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HDU 1491
阅读量:5043 次
发布时间:2019-06-12

本文共 1806 字,大约阅读时间需要 6 分钟。

Octorber 21st

Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)

Total Submission(s): 1500 Accepted Submission(s): 977

Problem Description
HDU's 50th birthday, on Octorber 21st, is coming. What an exciting day!! As a student of HDU, I always want to know how many days are there between today and Octorber 21st.So, write a problem and tell me the answer.Of course, the date I give you is always in 2006.
 

 

Input
The input consists of T test cases. The number of T is given on the first line of the input file.Following T lines, which represent dates, one date per line. The format for a date is "month day" where month is a number between 1 (which indicates January) and 12 (which indicates December), day is a number between 1 and 31.All the date in the input are in 2006, you can assume that all the dates in the input are legal(合法).
 

 

Output
For each case, if the date is before Octorber 21st, you should print a number that between the date and Octorber 21st.If the day is beyond Octorber 21st, just print "What a pity, it has passed!".If the date is just Octorber 21st, print"It's today!!".
 

 

Sample Input
7 10 20 10 19 10 1 10 21 9 1 11 11 12 12
 

 

Sample Output
1 2 20 It's today!! 50 What a pity, it has passed! What a pity, it has passed!
1 #include 
2 int main() 3 { 4 int t,i; 5 int month,day,now; 6 int tab[11]={
0,31,28,31,30,31,30,31,31,30}; 7 scanf("%d",&t); 8 while(t--) 9 {10 scanf("%d%d",&month,&day);11 if(month>10||(month==10&&day>21))12 puts("What a pity, it has passed!");13 else if(month==10&&day==21)14 puts("It's today!!");15 else16 {17 now=0;18 for(i=1;i

 

转载于:https://www.cnblogs.com/hxsyl/archive/2012/09/02/2667771.html

你可能感兴趣的文章
《架构之美》阅读笔记05
查看>>
《大道至简》读后感——论沟通的重要性
查看>>
JDBC基础篇(MYSQL)——使用statement执行DQL语句(select)
查看>>
关于React中props与state的一知半解
查看>>
java中Hashtable和HashMap的区别(转)
查看>>
关闭数据库
查看>>
webStrom智能提示忽略首字母大小写问题
查看>>
层叠加的五条叠加法则(一)
查看>>
设计模式六大原则(5):迪米特法则
查看>>
对Feature的操作插入添加删除
查看>>
javascript String
查看>>
ecshop 系统信息在哪个页面
查看>>
【转】码云source tree 提交超过100m 为什么大文件推不上去
查看>>
Oracle数据库的增、删、改、查
查看>>
MySql执行分析
查看>>
git使用中的问题
查看>>
yaml文件 .yml
查看>>
linux字符集修改
查看>>
phpcms 添加自定义表单 留言
查看>>
mysql 优化
查看>>