输出指定要求的回文日期

输出指定要求的回文日期

· 2020 年春节期间,有一个特殊的日期引起了大家的注意:2020 年 2 月 2 日。因为如果将这个日期按“yyyymmdd”的格式写成一个8 位数是20200202,恰好是一个回文数。我们称这样的日期是回文日期(palindromic date)。有人表示20200202 是“千年一遇”的特殊日子。对此小明很不认同,因为不到 2 年之后就是下一个回文日期:20211202 即 2021年 12月2日。也有人表示 20200202 并不仅仅是一个回文日期,还是一个 ABABBABA 型的回文日期。对此小明也不认同,因为大约 100 年后就能遇到下一个 ABABBABA 型的回文日期:21211212即2121 年 12 月 12 日。算不上“千年一遇”,顶多算“千年两遇”。

· 给定一个 8 位数的日期,请你计算该日期之后下一个回文日期和下一个 ABABBABA 型回文日期各是哪一天。

·输入描述:输入包含一个八位整数 N,表示日期。对于所有评测用例,10000101 ≤ N ≤ 89991231,保证 N 是一个合法日期的 8 位数

· 输出描述:输出两行,每行 1 个八位数。第一行表示下一个回文日期,第二行表示下一个 ABABBABA 型回文日期。

(一)编程实现

p03.t06包里创建PalindromicDate
在这里插入图片描述

1、判断输入日期是否合法

创建静态方法isLegalDate(String strDate)

  package p03.t06;

/**
 * 功能:输出指定要求的回文日期
 * 作者:李悦
 * 日期:2022年05月19日
 */
public class PalindromicDate {
    /**
     * 判断日期是否合法
     * 
     * @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;
    }
}

2、创建主方法,测试输入日期是否合法

· 判断输入日期是否合法,给出相应的提示
在这里插入图片描述

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 + "]是合法日期~");          
    } else {                                                    
        System.out.println("[" + strDate + "]是非法日期~");          
    }                                                           
}                                                               

3、判断日期是否是回文日期

· 定义静态方法isPalindromicDate()方法
在这里插入图片描述

    /**
     * 判断是否回文
     *
     * @param strDate
     * @retrun 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、修改主方法,输出该日期之后的第一个回文日期

· 完成第一个任务:输出该日期之后的第一个回文日期
在这里插入图片描述

  //用户输入的日期作为起点
    year = Integer.parseInt(strDate.substring(0, 4));
    month = Integer.parseInt(strDate.substring(4, 6));
    day = Integer.parseInt(strDate.substring(6));
    calendar.set(Calendar.YEAR,year);
    calendar.set(Calendar.MONTH,month - 1);
    calendar.set(Calendar.DAY_OF_MONTH,day);
    //输入此日期之后的第一个回文日期
    while (true) {
        calendar.add(calendar.DAY_OF_MONTH, 1); //后推一天
        strDate = sdf.format(calendar.getTime());
        if(isPalindromicDate(strDate)) {
            break;
        }

· 查看运行结果
在这里插入图片描述

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型回文日期
在这里插入图片描述

//输出该日期之后的第一个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);   

7、查看完整源代码

8、运行程序,查看结果

· 输入一个合法日期
在这里插入图片描述

package p03t06;

import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Scanner;
import java.util.regex.Pattern;

/**
 * 功能:
 * 作者:李悦
 * 日期: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;
    }
}

案例:计算中华人民共和国成立了多少天

package p03t06;

import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;

/**
 * 功能:
 * 作者:李悦
 * 日期:2022年05月19日
 */
public class LifeiOfPRC {
        public static void main(String[] args) {
            // 创建简单日期格式对象
            SimpleDateFormat sdf = new SimpleDateFormat("yyyy年MM月dd日 hh:mm:ss");
            // 方法一、 采用Date类
            Date foundDate = new Date(1949, 9, 1, 8, 0, 0 );
            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 / 24) + "天");

            // 方法二、 采用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()));
            interval = calendar2.getTime().getTime() - calendar1.getTime().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 / 24) + "天");
        }
}

· 查看运行结果
在这里插入图片描述

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值