文章目录
项目一、回文日期
一、什么是回文日期
回文日期的来历
1.2020年春节期间,有一个特殊的日期引起了大家的注意:2020年2月2日
。因为如果将按这个日期“yyyymmdd
"的格式写成一个8位数的是20200202,恰好是一个回文数 。我们成这样的日期为回文日期(palindrome)
。有人表示20200202
是“千年难遇”的特殊日子。对此有人表示不赞同,因为不到2年之后就是下一个回文日期:20211202
即2021年12月2日。也有人表示20200202并不仅仅是一个回文日期:ABABBABA
型的回文日期。对此我表示不赞同,因为大约100年后就能遇到下一个ABABBABA
型的回文日期:21211212
即2121年12月12日。算不上”千年一遇“,顶多算”千年俩遇“
那么怎样判断回文日期会在什么时候出现呢? 我们来编程实现一下吧!!
1.先定义一个8位数的日期,请你计算一下该日期之后下一个回文日期 和下一个ABABBABA型回文日期格式哪一天
2.输入描述:输入包含八位整数N, 表示日期。对于所有测评用例,10000101<=N<=89991231,保证N是一个合法日期的8位数
3.输出描述:输出两行,每行1个8位数。第一行表示下一行回文日期,第二行表示下一个ABABBABA
型的回文日期
二 、编程实现
-在在net.lixin.p03.t06
包里创建palindromicDate
类
1. 判断输入日期是否合法
-创建静态方法isLegalDate(String strDate)
2.输入主方法,测试输入日期是否合法
-判断输入日期是否合法,给出相应的提示
public static void main(String[] args) {
String strDate;
int year, month,day;
Calendar calendar=Calendar.getInstance();
SimpleDateFormat sdf=new SimpleDateFormat("yyyyMMdd") ;
Scanner sc = new Scanner(System.in);
System.out.print("输入八位数构成的日期:");
strDate = sc.next();
//判断日期是否合法
if(islegalDate(strDate)){
System.out.println("["+strDate+"]是合法日期~");
}else {
System.out.println("["+strDate + "]是非法日期~");
}
}
-运行程序,查看结果
1.结果一、输入正确
2.结果二、错误1月份和天日都不对
3.结果三、错误2、年份,月份、天日,但长度不对
3.判断日期是否是回文日期
–定义静态方法isLegalDate(String strDate)
方法
/**
* 判断是否是回文日期
*
* @param strDate
* @return true-回文日期,false-非回文日期
*/
private static boolean isPalindromicDate(String strDate) {
for (int i = 0; i < 4; i++) {
// 采用反向思维
if (strDate.charAt(i) != strDate.charAt(7 - i)) return false;
}
return true;
}
4.修改主方法,输出该日期之后的第一个回文日期
-完成第一个任务:输出该日期之后的第一个回文日期
if (isLegalDate(strDate)) {
System.out.println("[" + strDate + "]是合法日期~");
// 将用户输入的合法日期作为日期循环的起点
year = Integer.parseInt(strDate.substring(0, 4));
month = Integer.parseInt(strDate.substring(4, 6));
day = Integer.parseInt(strDate.substring(6));
Calendar calendar = Calendar.getInstance();
calendar.set(year, month - 1, day);
// 任务1、输出该日期之后的第一个回文日期
String strDate1 = strDate;
Calendar calendar1 = calendar;
while (true) {
calendar1.add(Calendar.DAY_OF_MONTH, 1); // 往后推1天
strDate1 = sdf.format(calendar1.getTime());
if (isPalindromicDate(strDate1)) {
break; // 找到一个回文日期就跳出循环
}
}
System.out.println("该日期之后的第一个回文日期:" + strDate1);
运行程序,查看结果
5.判断是否ABABBABA型回文日期
-定义静态方法isABABBABAPalindromicDate()
/**
* 判断是否是ABABBABA型回文日期
*
* @param strDate
* @return true-ABABBABA型回文日期,false-非ABABBABA型回文日期
*/
private static boolean isABABBABAPalindromicDate(String strDate) {
if (isPalindromicDate(strDate)) {
if (strDate.charAt(0) == strDate.charAt(2) && strDate.charAt(1) == strDate.charAt(3)) return true;
}
return false;
}
}
6.修改主方法,输出该日期之后的第一个ABABBABA型回文日期
-完成第二个任务:输出该日期之后的第一个ABABBABA型回文日期
// 任务2、输出该日期之后的第一个ABABBABA型回文日期
String strDate2 = strDate;
Calendar calendar2 = calendar;
while (true) {
calendar2.add(Calendar.DAY_OF_MONTH, 1); // 往后推1天
strDate2 = sdf.format(calendar2.getTime());
if (isABABBABAPalindromicDate(strDate2)) {
break; // 找到一个回文日期就跳出循环
}
}
System.out.println("该日期之后的第一个ABABBABA型回文日期:" + strDate2);
} else {
System.out.println("[" + strDate + "]是非法日期~");
}
}
7.查看完整代码
in.p03.t06;
import java.security.PrivateKey;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Scanner;
/**
* 功能:输出指定要求的回文日期
* 作者:李信
* 日期:2022年05月19日
*/
public class PalindromicDate {
public static void main(String[] args) {
String strDate;
int year, month, day;
Scanner sc = new Scanner(System.in);
SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMdd");
System.out.print("输入8位数构成的日期:");
strDate = sc.next();
if (isLegalDate(strDate)) {
System.out.println("[" + strDate + "]是合法日期~");
// 将用户输入的合法日期作为日期循环的起点
year = Integer.parseInt(strDate.substring(0, 4));
month = Integer.parseInt(strDate.substring(4, 6));
day = Integer.parseInt(strDate.substring(6));
Calendar calendar = Calendar.getInstance();
calendar.set(year, month - 1, day);
// 任务1、输出该日期之后的第一个回文日期
String strDate1 = strDate;
Calendar calendar1 = calendar;
while (true) {
calendar1.add(Calendar.DAY_OF_MONTH, 1); // 往后推1天
strDate1 = sdf.format(calendar1.getTime());
if (isPalindromicDate(strDate1)) {
break; // 找到一个回文日期就跳出循环
}
}
System.out.println("该日期之后的第一个回文日期:" + strDate1);
// 任务2、输出该日期之后的第一个ABABBABA型回文日期
String strDate2 = strDate;
Calendar calendar2 = calendar;
while (true) {
calendar2.add(Calendar.DAY_OF_MONTH, 1); // 往后推1天
strDate2 = sdf.format(calendar2.getTime());
if (isABABBABAPalindromicDate(strDate2)) {
break; // 找到一个回文日期就跳出循环
}
}
System.out.println("该日期之后的第一个ABABBABA型回文日期:" + strDate2);
} else {
System.out.println("[" + strDate + "]是非法日期~");
}
}
/**
* 判断日期是否合法
*
* @param strDate
* @return true-合法,false-非法
*/
private static boolean isLegalDate(String strDate) {
int year, month, day;
year = Integer.parseInt(strDate.substring(0, 4));
month = Integer.parseInt(strDate.substring(4, 6));
day = Integer.parseInt(strDate.substring(6));
// 利用反向思维来处理
if (year < 1000 || year > 8999) return false;
if (month < 1 || month > 12) return false;
if (month == 1 || month == 3 || month == 5 || month == 7 || month == 8 || month == 10 || month == 12) {
if (day < 1 || day > 31) return false;
} else if (month == 2) {
if (year % 4 == 0 && year % 100 != 0 || year % 400 == 0) { // 闰年判断
if (day < 1 || day > 29) return false;
} else {
if (day < 1 || day > 28) return false;
}
} else {
if (day < 1 || day > 30) return false;
}
return true;
}
/**
* 判断是否是回文日期
*
* @param strDate
* @return true-回文日期,false-非回文日期
*/
private static boolean isPalindromicDate(String strDate) {
for (int i = 0; i < 4; i++) {
// 采用反向思维
if (strDate.charAt(i) != strDate.charAt(7 - i)) return false;
}
return true;
}
/**
* 判断是否是ABABBABA型回文日期
*
* @param strDate
* @return true-ABABBABA型回文日期,false-非ABABBABA型回文日期
*/
private static boolean isABABBABAPalindromicDate(String strDate) {
if (isPalindromicDate(strDate)) {
if (strDate.charAt(0) == strDate.charAt(2) && strDate.charAt(1) == strDate.charAt(3)) return true;
}
return false;
}
}
8.运行程序,查看结果
1.合法日期如下
2.非法日期如下
(二) 知识点归纳(思维导图)
(三)加强训练
案例:计算中华人民共和国成立了多少天
-在net.lixin.t06
包里创建life0fPRC
类
package net.lixin.p03.t06;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
/**
* 功能:计算中华民族共和国成立了多少天
* 作者:李信
* 日期:2022年05月19日
*/
public class DateDemo {
public static void main(String[] args) {
//创建简单日期格式对象
SimpleDateFormat sdf = new SimpleDateFormat("yyyy年MM月dd日 hh:mm:ss");
System.out.println("方法一、采用Date类");
Date foundDate = new Date(1949-1900,9,1,8,0,0);//1949-10-01
System.out.println("成立日期:"+sdf.format(foundDate));
Date currentDate=new Date();
System.out.println("当前日期:"+sdf.format(currentDate));
long interval = 0;//时间间隔(毫秒数)
interval = currentDate.getTime()-foundDate.getTime();
System.out.println("中国人民共和国成立了"+(interval)+"毫秒");
System.out.println("中国人民共和国成立了"+(interval/1000)+"秒");
System.out.println("中国人民共和国成立了"+(interval/1000/60)+"分钟");
System.out.println("中国人民共和国成立了"+(interval/1000/60/60)+"小时");
System.out.println("中国人民共和国成立了"+(interval/1000/60/60/24)+"天");
System.out.println();
System.out.println("方法二、采用calendar类");
Calendar calendar1=Calendar.getInstance();
calendar1.set(Calendar.YEAR,1949);
calendar1.set(Calendar.MONDAY,10);
calendar1.set(Calendar.DAY_OF_MONTH,1);
calendar1.set(Calendar.HOUR,8);
calendar1.set(Calendar.MINUTE,0);
calendar1.set(Calendar.SECOND,0);
System.out.println("成立日期:"+sdf.format(calendar1.getTime()));
Calendar calendar2 =Calendar.getInstance();
System.out.println("当前日期:"+sdf.format(calendar2.getTime()));
System.out.println("中国人民共和国成立了"+(interval)+"毫秒");
System.out.println("中国人民共和国成立了"+(interval/1000)+"秒");
System.out.println("中国人民共和国成立了"+(interval/1000/60)+"分钟");
System.out.println("中国人民共和国成立了"+(interval/1000/60/60)+"小时");
System.out.println("中国人民共和国成立了"+(interval/1000/60/60/24)+"天");
}
}
-运行程序,查看结果