51Testing软件测试论坛

标题: 清明节如何计算(一千年清明节计算) [打印本页]

作者: 海鸥一飞    时间: 2019-3-26 17:04
标题: 清明节如何计算(一千年清明节计算)
清明节在公历中的日期是不固定的。

统计了近1000年的日历(1700-3100),发现

最早的清明节是2896年,其交节时间为 2896-04-03 20:21:51

最晚的清明节是1903年,其交节时间为 1903-04-06 07:25:53,

那么每年的清明节究竟如何计算呢?

代码如下:
  1. /**
  2.          * 计算清明节的日期(可计算范围: 1700-3100)
  3.          *
  4.          * @param year
  5.          *            需要计算的年份
  6.          * @return 清明节在公历中的日期
  7.          */
  8.         public static int qing(int year) {
  9.                 if (year == 2232) {
  10.                         return 4;
  11.                 }
  12.                 if (year < 1700) {
  13.                         throw new RuntimeException("1700年以前暂时不支持");
  14.                 }
  15.                 if (year >= 3100) {
  16.                         throw new RuntimeException("3100年以后暂时不支持");
  17.                 }
  18.                 double[] coefficient = { 5.15, 5.37, 5.59, 4.82, 5.02, 5.26, 5.48, 4.70, 4.92, 5.135, 5.36, 4.60, 4.81, 5.04,
  19.                                 5.26 };
  20.                 int mod = year % 100;
  21.                 return (int) (mod * 0.2422 + coefficient[year / 100 - 17] - mod / 4);
  22.         }
复制代码







欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2