【代码 -- 特殊日期】特殊日期

问题描述

一个日期由年、月、日组成,年份为四位数,月不超过两位,日期为不超过两位,小明喜欢把年月日连起来写,当月或日期的长度为一位时在前面补0,这样形成一个八位数。例如, 2018年1月3日写成20180103 ,而2018年11月15日写成20181115小明发现,这样写好,有些日期中出现了3位连续的数字,小明称之为特殊日期。例如,20181115就是这样一个数,中间出现了连续的3个1,当然, 2011年11月11日也是这样一个日期。给定一个起始日期和一个结束日期,请计算这两个日期之间(包含这两个日期)有多少个特殊日期。

代码
package Ring1270.pra.java01;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Scanner;
/**
 * Question description: *      One date contain year,month and day, year is four number, month is two number and day is two number *      if there has three and more numbers are similar with each other be called special date like 20211105, *      Statistics special date when setting a start date and a end date * */
public class E_SpecialDate {
    public static void main(String[] args) throws ParseException {
        Scanner scanner = new Scanner(System.in);
        System.out.println("Input start date:");
        SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyyMMdd");
        String start = scanner.nextLine();
        System.out.println("Input end date:");
        String end = scanner.nextLine();
        Calendar st = Calendar.getInstance();
        Calendar ed = Calendar.getInstance();
        st.setTime(simpleDateFormat.parse(start));
        ed.setTime(simpleDateFormat.parse(end));
        char[] D;
        int count = 0;
        System.out.println("The special date:");
        while (!st.after(ed)) {
            st.add(Calendar.DAY_OF_YEAR, 1);
            D = simpleDateFormat.format(st.getTime()).toCharArray();
            for (int i = 0; i <= 5; i++) {
                if (D[i] == D[i + 1] && D[i] == D[i + 2]) {
                    System.out.println(D);
                    count++;
                    break;
                }
            }
        }
        System.out.println(count);
    }
}
运行截图

【代码 -- 特殊日期】特殊日期_第1张图片

你可能感兴趣的:(java)