| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 967 人关注过本帖
标题:有关泽勒一致性算法的问题
只看楼主 加入收藏
ankewlin
Rank: 1
等 级:新手上路
帖 子:8
专家分:0
注 册:2021-1-19
结帖率:0
收藏
 问题点数:0 回复次数:0 
有关泽勒一致性算法的问题
求大神解解惑 java基础篇3.21练习题
泽勒一致性算法给出的日期“2015年1月25日及2021年5月12日”满足泽勒一致性算法结构,但是2021年4月12日就不满足泽勒一致性算法
这是怎么回事呢?

代码如下

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

        // Prompt the user to enter a year, month, and day of the month.
        System.out.print("Enter year: (e.g., 2012): ");
        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 dayOfMonth = input.nextInt();

        // Convert January and February to months 13 and 14 of the previous year
        if (month == 1 || month == 2)
        {
            month = (month == 1) ? 13 : 14;
            year--;
        }

        // Calculate day of the week
        int dayOfWeek = (dayOfMonth + (26 * (month + 1)) / 10 + (year % 100)
                + (year % 100) / 4 + (year / 100) / 4 + 5 * (year / 100)) % 7;

        // Display reslut
        System.out.print("Day of the week is ");
        switch(dayOfWeek)
        {
            case 0: System.out.println("Saturday"); break;
            case 1: System.out.println("Sunday"); break;
            case 2: System.out.println("Monday"); break;
            case 3: System.out.println("Tuesday"); break;
            case 4: System.out.println("Wednesday"); break;
            case 5: System.out.println("Thursday"); break;
            case 6: System.out.println("Friday");
        }
    }
}
搜索更多相关主题的帖子: System the case out year 
2021-04-12 00:06
快速回复:有关泽勒一致性算法的问题
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.016987 second(s), 9 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved