Java:查找用户输入的日历日期的工作日

时间:2015-10-11 00:30:05

标签: java date weekday

我是目前正在攻读商业信息学的编程爱好者。我们已经开始用Java编程两个月了,我发现这个网站在大多数情况下都有很大帮助,我必须为我的作业编写一些代码。

但是,我必须实现一个类,该类要求用户提供日历日期,验证日期,然后计算并打印该日期的工作日。该计划不接受不存在的日期。

用户以 YYYYMMDD 格式输入日期。

拒绝任何不可能的日期:

- 1582年10月15日之前或12月31日,2199年之后的日期

- 不可能的月份(< 1或> 12)

- 不可能的一天(例如,任何一天> 31,一天> 30,某些月,一天> 28,二月二十八日 非闰年等)。

我们被要求使用Gauss推导出的公式:

A = d + [2.6 x m − 0.2] + y + [y/4]+ [c/4] - (2 x c)
W = A % 7

,其中

  • [x]是高斯算子:[x]最大整数x'< = x

  • d代表当天

  • y代表年度的最后两位数字

  • c代表年份的前两位数(实际上除了最后两位之外; c代表世纪)

  • m代表月份

  • w是工作日

我们还被要求实施一些功能来完成这项任务。请参阅下面的代码:

public class Weekdays {

public static void main(String[] args) {


        TextIO.putln("enter date (yyyymmdd)");
        int date = TextIO.getInt();
        int inDay = date % 100, inMonth = date % 10000 / 100, inYear = date / 10000;
        if(validate(inYear, inMonth, inDay)){
        int W = weekday(inDay, inMonth, inYear);
        String weekday = dayName(W);
        TextIO.putf("%02d.%02d.%4d was/is or will be a %s", date % 100, date % 10000 / 100,
        date / 10000, weekday);
        }else {
        TextIO.putf("invalid date (%d)\n", date);
        }
        }

public static boolean validate (int year) {

    if (year < 1582 || year > 2199) {

        return false;
    }
    else {
        return true;
    }
}

public static boolean validate (int year, int month) {


    if ((year < 1582 || year > 2199)) {

        return false;
    }

    else if (month < 1 || month > 12) {
        return false;
    }

    else if (year == 1582 && month < 10) {

        return false;
    }
    else {
        return true;
    }
}

public static boolean isLeap (int inYear) {
    return (((inYear % 4 == 0) && (inYear % 400 == 0 || inYear % 100 != 0) ));
}

public static int nDays (int month, int year) {

    if ((((year % 4 == 0) && (year % 400 == 0 || year % 100 != 0) ))) {

        if (month == 2) {
            return 29;
        }
        else if ((month == 4) || (month == 6) || (month == 9) || (month == 11)) {
            return 30;
        }
        else {
            return 31;
        }

    }

        else if (year == 1582 && month == 10) {
            return 16;
    }
        else {

            if (month == 2) {
            return 28;
            }
            else if ((month == 4) || (month == 6) || (month == 9) || (month == 11)) {
            return 30;
            }
            else {
            return 31;
        }

    }

}

public static boolean validate (int year, int month, int day) {

    if ((year == 1582 && month == 10) && day < 16) {
        return false;
    }
    else if ((year == 1582 && month == 10) && day <= 31) {

    }
    return (validate(year,month) && day > 0 && day <= nDays(month,year));





}

public static int weekday (int inDay, int inMonth, int inYear) {

    int  month, year, day,c;
    year = inYear;
    day = inDay;

    if (inMonth < 3) {
        year--;
        inMonth = inMonth +10;
    }
    else {
        inMonth = inMonth -2;
    }

    month = inMonth;


    c = year/100;
    year = year%100;

    int A = (int) (day+((2.6*month)-0.2)+year+(year/4)+(c/4)-(2*c));

    int x = A % 7;

    if (x < 0) {
        x+=7;
    }

    return x;

}

public static String dayName (int W) {

    switch (W) {

    case 0: return "Sunday";

    case 1: return "Monday";

    case 2: return "Tuesday";

    case 3: return "Wednesday";

    case 4: return "Thursday";

    case 5: return "Friday";

    case 6: return "Saturday";

    default: return "invalid date (" +W+ ")";
    }
    }


}

当我分别测试两个日期21010101和19190303时,我遇到了问题。我的程序在这两个日期输出错误的工作日。尽我所能,我根本无法找到解决方法。我知道我的代码不是最好的,但我正在做我作为初学者的能力。任何帮助,将不胜感激。谢谢!

2 个答案:

答案 0 :(得分:3)

您似乎有一个舍入错误,您可以在其中计算与A中月份值对应的字词:

int A = (int) (day+((2.6*month)-0.2)+year+(year/4)+(c/4)-(2*c));

此处,(2.6*month)的结果将在减去int之前投放(“覆盖”)到0.2,将工作日设置为具有一些月份值的工作日。您应该提取这个术语并使用Math.floor()(“高斯算子”;在公式中用方括号表示)来计算结果:

int monthTerm = (int) Math.floor((2.6 * month) - 0.2);
int A = day + monthTerm + year + (year / 4) + (c / 4) - (2 * c);

(year / 4)(c / 4)的结果将被隐式“浮动”/截断,因为两个操作数都是int s。

答案 1 :(得分:2)

使用Math.round(float)。像,

int A = Math.round((day + ((2.6f * month) - 0.2f) + year
        + (year / 4) + (c / 4) - (2 * c)));
int x = A % 7;

我得到(要求的)

01.01.2101 was/is or will be a Saturday

03.03.1919 was/is or will be a Monday