赞
踩
题目:
思路:
遍历从2001.1.1到2021.12.31的所有日期,找出符合要求的。
需要注意这个完全日期,根据实际日期大小数值判断一下,符合要求的平方数只有9,16,25。
需要用到的类方法详解:
用Calendar枚举所有日期,每次枚举只需要将date+1。
需要注意以下地方:
需要注意的其中是月份是从0开始。(此外,星期是从日开始)
如下图:这个代表2021年1月31日
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 } }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。