A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

import java.util.Scanner;

public class Almanac {

        public static void main(String[] args) {
                // 万年历制作
                Scanner input = new Scanner(System.in);
                String num = "";
                do {
                        System.out.println("*************万年历*************\n");
                        System.out.print("请输入年份:");
                        int year = input.nextInt();
                        System.out.print("请输入月份:");
                        int yuefei = input.nextInt();
                        if (year > 0 && yuefei > 0 && yuefei <= 12) {
                                int total = 0;
                                int sum = 0;
                                // 算出年份差的天数
                                for (int i = 1900; i < year; i++) {
                                        if (i % 4 == 0 && i % 100 != 0 || i % 400 == 0) {
                                                total += 366;
                                        } else {
                                                total += 365;
                                        }
                                }
                                // 算出月份差的天数
                                for (int j = 1; j < yuefei; j++) {
                                        switch (j) {
                                        case 1:
                                        case 3:
                                        case 5:
                                        case 7:
                                        case 8:
                                        case 10:
                                        case 12:
                                                total += 31;
                                                break;
                                        case 4:
                                        case 6:
                                        case 9:
                                        case 11:
                                                total += 30;
                                                break;
                                        case 2:
                                                if (year % 4 == 0 && year % 100 != 0 || year % 400 == 0) {
                                                        total += 29;
                                                } else {
                                                        total += 28;
                                                }
                                                break;

                                        default:
                                                System.out.println("您输入错误!");
                                                break;
                                        }
                                }

                                // 计算出星期几
                                int day = total % 7 + 1;
                                int days = 0;

                                System.out.print("\n\t\t\t" + year + "年\t\t" + yuefei + "月");
                                System.out.print("\n星期天\t星期一\t星期二\t星期三\t星期四\t星期五\t星期六\n");
                                switch (yuefei) {
                                case 1:
                                case 3:
                                case 5:
                                case 7:
                                case 8:
                                case 10:
                                case 12:
                                        days = 31;
                                        break;
                                case 4:
                                case 6:
                                case 9:
                                case 11:
                                        days = 30;
                                        break;
                                case 2:
                                        if (year % 4 == 0 && year % 100 != 0 || year % 400 == 0) {
                                                days = 29;
                                        } else {
                                                days = 28;
                                        }
                                        break;
                                }
                                for (int i = 1; i <= day; i++) {
                                        System.out.print("\t");
                                        sum += 1;
                                }
                                for (int i = 1; i <= days; i++) {

                                        if (sum % 7 == 0) {
                                                System.out.print("\n");
                                        }
                                        System.out.print(i + "\t");
                                        sum += 1;

                                }
                        } else {
                                System.out.println("您输入错误!");
                        }
                        System.out.println("\n要继续吗?(y/n)");
                        num = input.next();

                } while (num.equals("y"));
                System.out.println("谢谢使用!");
        }

}

3 个回复

倒序浏览
本帖最后由 niuapp 于 2015-5-28 22:31 编辑

哥们,那个 i%400==0 || i%100==0  代表什么意思啊,400和100是啥?哦这样,唉,文盲伤不起啊
//四年一闰,百年不闰,四百年再闰

回复 使用道具 举报
表示不懂
回复 使用道具 举报

程序运行后,输入你想查看的年份和月份,程序就会按照当月的日历顺序显示。可以清楚的显示几号对应星期几
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马