HDOJ(HDU) 1491 Octorber 21st

举报
谙忆 发表于 2021/05/27 01:48:33 2021/05/27
【摘要】 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 Octorbe...

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); } }

}

  
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45

文章来源: chenhx.blog.csdn.net,作者:谙忆,版权归原作者所有,如需转载,请联系作者。

原文链接:chenhx.blog.csdn.net/article/details/51176746

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。