1. ホーム
  2. java

[解決済み】JavaでZellerの合同を使用して曜日を決定する

2022-02-18 03:28:15

質問

ツェラーの合同プログラムを1時間見つめているが、どこに論理の間違いがあるのか分からない。どなたか、その誤りを指摘していただけませんか?よろしくお願いします。

// Implement the Zeller's congruence algorithm.
// To calculate the day of the week

import java.util.Scanner;

public class DayOfTheWeek {
    public static void main(String[] args) {
        // Create a Scanner
        Scanner input = new Scanner(System.in);

        // Prompt the user to enter a year, month and a day
        System.out.print("Enter year (e.g., 2008): ");
        int year = input.nextInt();

        System.out.print("Enter month: 1-12: ");
        int month = input.nextInt();

        System.out.print("Enter the day of the month: 1-31: ");
        int day = input.nextInt();

        // Check if the month is January or February
        // If the month is January and February, convert to 13, and 14,
        // and year has to -1. (Go to previous year).
        if (month == 1 || month == 2) {
            month += 12;
            year--;
        }

        // Compute the answer
        int k = year % 7; // The year of the century
        int j = (int)(year / 100.0); // the century
        int q = day;
        int m = month;
        int h = (q + (int)((26 * (m + 1)) / 10.0) + k + (int)(k / 4.0) 
                + (int)(j / 4.0) + (5 * j)) % 7;

        String result = "Day of the week is ";

        //Display the name of the day of the week
        if (h == 0) 
            System.out.print(result + "Saturday");
        else if (h == 1)
            System.out.print(result + "Sunday");
        else if (h == 2)
            System.out.print(result + "Monday");
        else if (h == 3)
            System.out.print(result + "Tuesday");
        else if (h == 4)
            System.out.print(result + "Wednesday");
        else if (h == 5)
            System.out.print(result + "Thursday");
        else
            System.out.print(result + "Friday");
    }
}

解決するには?

プレ {コード

を希望する場合があります。 {コード を、そこに置く。

また、2つの数式を混ぜていますね。ソフトウェアでの最適な実装を求めるなら( ウィキペディアより提供 )、これを試してみてください。

int k = year % 7; // The year of the century

またはこれ

% 100

あなたは(おそらく不注意に)2番目のソフトウェア式の開始を1番目の式の終了に使用し、コンピュータを混乱させることになりました。