打印任一年日历

package com.u2;
import java.io.*;
public class Demo { // 操作打印任一年日历的类
    static int year, monthDay, weekDay; // 定义静态变量,以便其它类调用
    public static boolean isLeapYear(int y) { // 判断是否是闰年
        return ((y % 4 == 0 && y % 100 != 0) || (y % 400 == 0));
    }
    public static int firstDay(int y) { // 计算该年第一天是星期几
        long n = y * 365;
        for (int i = 1; i < y; i++)
            if (isLeapYear(i)) // 判断是否是闰年
                n += 1;
        return (int) n % 7;
    }
    public static void printWeek() { // 打印标头
        System.out.println("===========================");
        System.out.println("日        一        二        三        四        五        六");
    }
    public static int getMonthDay(int m) { // 获取每个月的天数
        switch (m) {
        case 1:
        case 3:
        case 5:
        case 7:
        case 8:
        case 10:
        case 12:
            return 31;
        case 4:
        case 6:
        case 9:
        case 11:
            return 30;
        case 2:
            if (isLeapYear(year)) // 判断是否是闰年
                return 29;
            else
                return 28;
        default:
            return 0;
        }
    }
    public static void printMonth() { // 分别按不同条件逐月打印
        for (int m = 1; m <= 12; m++) // 循环月份
        {
            System.out.println(m + "月");
            printWeek();
            for (int j = 1; j <= weekDay; j++) {// 按每个月第一天是星期几打印相应的空格
                System.out.print("    ");
            }
            int monthDay = getMonthDay(m); // 获取每个月的天数
            for (int d = 1; d <= monthDay; d++) {
                if (d < 10) // 以下4行对输出格式化
                    System.out.print(d + "   ");
                else
                    System.out.print(d + "  ");
                weekDay = (weekDay + 1) % 7; // 每打印一天后,反应第二天是星期几
                if (weekDay == 0) // 如果第二天是星期天,便换行。
                    System.out.println();
            }
            System.out.println("");
        }
    }
    public static void main(String[] args) throws IOException {// java程序的主入口处
        year = 2014;
        weekDay = firstDay(year); // 计算该年第一天是星期几
        System.out.println(year + "年          ");
        printMonth();
    }
}
在C语言中,打印一年日历通常需要使用一些循环和条件判断来处理月份的天数变化。以下是一个简单的示例,展示如何打印出2023年的日历: ```c #include <stdio.h> #include <stdlib.h> // 函数来获取给定月份的天数 int days_in_month(int month, int year) { switch (month) { case 2: if ((year % 4 == 0 && year % 100 != 0) || (year % 400 == 0)) return 29; // 考虑闰年 else return 28; case 1, 3, 5, 7, 8, 10, 12: return 31; // 非闰年都是31天 default: return 30; // 4, 6, 9, 11月非闰年是30天 } } void print_calendar(int year) { for (int i = 1; i <= 12; i++) { printf("%d年\n", year); printf(" "); for (int j = 1; j <= 7; j++) { printf("%2d ", j); // 两位数显示 } printf("\n"); int day_of_week = (year + (i - 1) / 12) * 26 + (i + 2) / 10 + (i % 10 > 4 ? 1 : 0); // 根据蔡勒公式计算星期几 int start_day = (day_of_week - 1 + 7) % 7; // 转换到一周中的第一天 for (int k = 1; k < start_day; k++) { printf(" "); // 填充空白 } printf("%d", year % 100); // 显示年份的最后两位 for (int l = 1; l <= days_in_month(i, year); l++) { if (l == start_day + 1) { printf("*"); // 初始日期标记 } else { printf("%2d ", l); } } printf("\n"); } } int main() { int year = 2023; print_calendar(year); return 0; } ``` 这个程序首先定义了一个函数`days_in_month`来获取指定月份的天数,然后通过`print_calendar`函数按行打印日历。注意,这是一个简化版本,没有考虑到更复杂的格式美化和闰年规则。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值