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

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

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

 

转载地址:http://ecoxo.baihongyu.com/

你可能感兴趣的文章
第一个python程序
查看>>
1-4-之字形打印矩阵
查看>>
nodejs封装http请求
查看>>
【OpenCV】直线检测
查看>>
线段树
查看>>
PHP 构造函数的重载
查看>>
UBUNTU 添加删除用户
查看>>
SQLAlchemy的使用---外键ForeignKey数据增删改查
查看>>
uwp使用资源限定符Devicefamily不同设备使用不同布局
查看>>
聚合函数:sum,avg,max,min,count
查看>>
Struts2学习(四)———— ognl表达式、值栈、actionContext之间的关系
查看>>
Scala学习笔记(三)
查看>>
memcached缓存服务器的安装
查看>>
CentOS6.3下搭建vsftpd(采用虚拟用户设置)
查看>>
iphone 存图片和视频到iPhone相册
查看>>
[Python3网络爬虫开发实战] 1.9.6-Gerapy的安装
查看>>
关于self.用法的一些总结
查看>>
task
查看>>
集合框架
查看>>
每天学点GDB 2
查看>>