当前位置:   article > 正文

第十二届蓝桥杯 2021年国赛真题 C完全日期(Calendar类 日期遍历)_怎么遍历从2001年到2021年的日期

怎么遍历从2001年到2021年的日期

题目:
在这里插入图片描述
思路:
遍历从2001.1.1到2021.12.31的所有日期,找出符合要求的。
需要注意这个完全日期,根据实际日期大小数值判断一下,符合要求的平方数只有9,16,25。

需要用到的类方法详解:
Calendar枚举所有日期,每次枚举只需要将date+1。

需要注意以下地方:

  1. 需要注意的其中是月份是从0开始。(此外,星期是从日开始)
    如下图:这个代表2021年1月31日
    在这里插入图片描述

  2. Calendar的好处在于可以帮你把不合法的日期给合法化。
    如下图:2001.1.31执行过日份+1的操作后,日期变成了2001.2.1 ,这个类具有自动转化的操作。
    在这里插入图片描述

代码:

import java.util.Calendar;

public class C {
    public static void main(String[] args) {

        Calendar instance = Calendar.getInstance();
        instance.set(Calendar.YEAR, 2001);
        instance.set(Calendar.MONTH, 0);
        instance.set(Calendar.DATE, 1);

        int res = 0;

        while (true) {
            int temp = 0;
            int y = instance.get(Calendar.YEAR);
            int m = instance.get(Calendar.MONTH) + 1;
            int d = instance.get(Calendar.DATE);


            int temp1 = y;
            while (temp1 > 0) {
                temp += temp1 % 10;
                temp1 /= 10;
            }

            int temp2 = m;
            while (temp2 > 0) {
                temp += temp2 % 10;
                temp2 /= 10;
            }

            int temp3 = d;
            while (temp3 > 0) {
                temp += temp3 % 10;
                temp3 /= 10;
            }

            if (temp == 9 || temp == 16 || temp == 25 ) {
                res++;
            }

            if (y == 2021 && m == 12 && d == 31) {
                break;
            }

            instance.set(Calendar.DATE, d + 1);
        }

        System.out.println(res);//977
    }
}

  • 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
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/510972
推荐阅读
相关标签
  

闽ICP备14008679号