博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HDOJ(HDU) 1491 Octorber 21st
阅读量:6979 次
发布时间:2019-06-27

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

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!

水题一个,弄清楚题意就知道了。

题目的意思是,今天是2006年10月21日。
(不是闰年,所以2月是28天)
输入的月 日 都是2006年的,也都是合法的。
如果输入的日期在10月21日之前,就输出那天到10月21日隔多少天。
如果输入10 21,就输出”It’s today!!”
如果输入的日期在10月21日之后,就输出”What a pity, it has passed!”

import java.util.Scanner;public class Main{    public static void main(String[] args) {        int time[]={
0,31,28,31,30,31,30,31,31,30,31,30,31}; Scanner sc = new Scanner(System.in); int t = sc.nextInt(); while(t-->0){ int a = sc.nextInt(); int b = sc.nextInt(); //用卫条件来防范 //判断输入的是不是今天 if(a==10&&b==21){ System.out.println("It's today!!"); continue; } //判断是不是输入10月21日之后的日期 if(a>10||(a==10&&b>21)){ System.out.println("What a pity, it has passed!"); continue; } //判断是不是输入10月之后且10月21日之间的日期 if(a==10){ System.out.println(21-b); continue; } //剩下的就是10月之前的日期了。 int tm=time[a]-b; for(int i=a+1;i<10;i++){ tm+=time[i]; } tm=tm+21; System.out.println(tm); } }}
你可能感兴趣的文章
《算法技术手册》一2.4.6 二次方的算法性能
查看>>
物联网时代全面降临
查看>>
什么是新IP的四层网络技术
查看>>
大数据流通存隐忧 产业信任体系亟待建立
查看>>
WebGL初探
查看>>
数据中心建设“优劣”在于这几个关键问题
查看>>
微软在慕尼黑设立欧洲首个物联网实验室
查看>>
逆变器的技术创新 让光伏电站更具发展前景
查看>>
光伏电价断崖式下跌 企业遭遇成长烦恼
查看>>
新型智能电视攻击,9成国外设备或受影响
查看>>
数据中心节能大法 —— 尽在上海11月中国数据中心展
查看>>
《关系营销2.0——社交网络时代的营销之道》一T表示Technology(技术)
查看>>
《防患未然:实施情报先导的信息安全方法与实践》——3.3 攻击剖析
查看>>
《CCNP TSHOOT 300-135认证考试指南》——2.2节故障检测与排除及网络维护工具箱
查看>>
2016 只剩最后一个月 你的 "技术债务" 还清了吗?
查看>>
使用 HTML5 时如何改进移动 Web 应用开发
查看>>
《树莓派Python编程指南》——2.3 小结
查看>>
《Adobe After Effects CC经典教程》——导读
查看>>
《21世纪机器人》一一第1章 他用自己的思想打造机器人
查看>>
《Unity着色器和屏幕特效》——2.2 进阶的透明效果
查看>>