YDDD格式的日期计算

YDDD格式的日期计算在金融系统开发中 用到 由年份最后一位 和一年中第多少天 太阳日 一起组成的 YDDD 型的编码 如对应 1002 对应 3246 对应 9009 int year int mounth int day 为方便 2 月统一为 28 天 实现如下 public class DateTest public static void main String

大家好,我是讯享网,很高兴认识大家。

在金融系统开发中,用到 由年份最后一位,和一年中第多少天(太阳日)一起组成的YDDD型的编码,如对应1002,对应3246,对应9009。

int year,int mounth,int day


为方便2月统一为28天。


实现如下:

public class DateTest {

public static void main(String[] args) {
Date date = new Date();
date.day = 31;
date.mounth = 12;
date.year = 2019;
System.out.println(date.sumdate());
}
}

class Date {
public int year;
public int mounth;
public int day;

public int sumdate() {
if (year >= 0 && year <= 9999 && mounth >= 1 && mounth <= 12) {
int a = year / 10;
int sum = 1000 * (year - 10 * a);
int b[] = { 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 };
if (day >= 1 && day <= b[mounth - 1]) {

for (int i = 0; i < mounth - 1; i++) {
sum += b[i];
}
sum += day;
return sum;
}
return -1;
} else {
return -1;
}
}

}


讯享网

小讯
上一篇 2025-03-17 08:24
下一篇 2025-02-28 12:43

相关推荐

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容,请联系我们,一经查实,本站将立刻删除。
如需转载请保留出处:https://51itzy.com/kjqy/58743.html