Java日历打印

写在前面

练习遇到的题目,磕磕绊绊写出来了,很多地方很勉强,功能未完善,有时间再来继续进行完善
需增加部分:键入日期输出星期,键入日期计算天数

1.确定起始时间

因为打印模版是星期天为第一列,故起始时间定为1928/01/01,创建需要变量并对变量进行统一初始化

	int startDay = 1, startMonth = 1, startYear = 1928;
	int yearDay = 0;
	int monthDay = 0;
	int countMonth = 0;
	int totalDay = 0;
	int startPoint = 0;
	int day = 1;

2.输入年份和月份

	Scanner sca = new Scanner(System.in);
	System.out.println("Enter the year");
	int inputYear = sca.nextInt();
	System.out.println("Enter the month");
	int inputMonth = sca.nextInt();

	sca.close();

3.判断年份

	for (startYear = 1928; startYear < inputYear; startYear++) {
		if ((startYear % 4 == 0 && startYear % 100 != 0) || startYear % 400 == 0) {//是否闰年
			yearDay = 366;
		} else {
			yearDay = 365;
		}
	}

4.判断月份

	switch (countMonth) {
		case 4:
		case 6:
		case 9:
		case 11:
			monthDay = 30;
			break;
		case 2:
			if ((inputYear % 4 == 0 && inputYear % 100 != 0) || inputYear % 400 == 0) {
			monthDay = 29;
			} else {
			monthDay = 28;
			}
			break;
		default: //可不加break,此处使用default也可精简代码
			monthDay = 31;

5.打印表头

	System.out.println("日\t\t一\t\t二\t\t三\t\t四\t\t五\t\t六");

6.使用for循环打印打印6行7列排列的顺序的数字,作为日历打印模版

	for (int i = 0; i < 6; i++) {
		for (int j = 0; j < 7; j++) {
			System.out.print(day + "\t\t");
			day++;
		}
		System.out.println();
	}

7.计算总天数以确定输入年月的1号的起始位

7.1计算年份总和

//判定是否闰年并计算输入年份之前天数总和
	for (startYear = 1928; startYear < inputYear; startYear++) {
		if ((startYear % 4 == 0 && startYear % 100 != 0) || startYear % 400 == 0) {//是否闰年
			yearDay += 366;
		} else {
			yearDay += 365;
		}
	}

7.2计算月份总和

//判定月份并计算输入月份之前的天数总和
//在此处需要新增一个if函数判断输入月份是否为1月,因为1月不满足后面for循环的条件,会导致输入一月后无法判定1月天数,进而打印失败
	if(monthDay == 1){
		monthDay = 31;
	}else{
		for(countMonth = 1;countMonth < inputMonth;countMonth++){
			switch (countMonth) {
				case 4:
				case 6:
				case 9:
				case 11:
					monthDay = 30;
					break;
				case 2:
					if ((inputYear % 4 == 0 && inputYear % 100 != 0) || inputYear % 400 == 0) {
					monthDay = 29;
					} else {
					monthDay = 28;
					}
					break;
				default:
					monthDay = 31;
			}
			totalDay = totalDay + monthDay;
		}
	}

7.3计算输入年月总和

	 totalDay = totalDay + monthDay;

8.确定输入年月起始点

	totalDay = yearDay + totalDay;
	startPoint = totalDay % 7;

9.完善打印模块

	for (int i = 0; i < 6; i++) {
		for (int j = 0; j < 7; j++) {
			day = day - startPoint;//保证月历打印时保证打印位置正确
			if (day <= monthDay && day > 0) {
				System.out.print(day + "\t\t");//天数内打印日期
			} else {
				System.out.print(' ' + "\t\t");//不在天数内打印空格
			}
			day = day + startPoint;//保证在startPoint修正位置后day值不会被改变
			day++;
		}
		System.out.println();
	}

10.代码完整版

	import java.util.Scanner;
	
	public class CalendarTable {
	    public static void main(String[] args) {
	        //设置各类变量及初始化
	        int startDay = 1, startMonth = 1, startYear = 1928;
	        //1928年1月1日为星期天,可作为日历起点
	        int yearDay = 0;
	        int monthDay = 0;
	        int countMonth = 0;
	        int totalDay = 0;
	        int startPoint = 0;
	        int day = 1;
	
	        //输入年份、月份和日期
	        Scanner sca = new Scanner(System.in);
	        System.out.println("Enter the year");
	        int inputYear = sca.nextInt();
	        System.out.println("Enter the month");
	        int inputMonth = sca.nextInt();
	
	        //判定是否闰年并计算输入年份之前天数总和
	        for (startYear = 1928; startYear < inputYear; startYear++) {
	            if ((startYear % 4 == 0 && startYear % 100 != 0) || startYear % 400 == 0) {//是否闰年
	                yearDay += 366;
	            } else {
	                yearDay += 365;
	            }
	        }
	
	        //判定月份并计算输入月份之前的天数总和
	        //在此处需要新增一个if函数判断输入月份是否为1月,因为1月不满足后面for循环的条件,
	        //会导致输入一月后无法判定1月天数,进而打印失败
	        if(inputMonth == 1){
	        	monthDay = 31;
	        }else{
	 	        for(countMonth = 1;countMonth < inputMonth;countMonth++){
	            switch (countMonth) {
	                case 4:
	                case 6:
	                case 9:
	                case 11:
	                    monthDay = 30;
	                    break;
	                case 2:
	                    if ((inputYear % 4 == 0 && inputYear % 100 != 0) || inputYear % 400 == 0) {
	                        monthDay = 29;
	                    } else {
	                        monthDay = 28;
	                    }
	                    break;
	                default: //可不加break,此处使用default也可精简代码
	                    monthDay = 31;
	            }
	            totalDay = totalDay + monthDay;
	            //计算输入年份所在月份之前的总天数       
	        }
	
	        //确定总天数及输入年月的月历起始点
	        totalDay = yearDay + totalDay;
	        startPoint = totalDay % 7;
	        //七天一周期,所以此处模7后剩余的数就是对应的星期数(0=星期天)
	        //System.out.println(startPoint);//检验用
	
	        //打印月历
	        System.out.println("日\t\t一\t\t二\t\t三\t\t四\t\t五\t\t六");
	        for (int i = 0; i < 6; i++) {
	            for (int j = 0; j < 7; j++) {
	                day = day - startPoint;//月历打印时保证打印位置正确
	                if (day <= monthDay && day > 0) {
	                    System.out.print(day + "\t\t");
	                } else {
	               //注意不能将空格赋值给day虽然不会报错且能运行,但是会影响后面的计算,导致结果错误,如下:
	               //if (day >= monthDay || day < 0) {
	               //     day = ' ';
	                    System.out.print(' ' + "\t\t");//不符合条件的数字替换为空格
	                }
	                day = day + startPoint;//保证在startPoint修正位置后day值不会被改变
	                day++;
	            }
	            System.out.println();
	        }
	        
	        //关闭资源
	        sca.close();
	    }
	}
以下是Java打印整齐的日历的代码: ```java import java.util.Scanner; public class PrintCalendar { public static void main(String[] args) { Scanner input = new Scanner(System.in); // Prompt the user to enter year System.out.print("Enter full year (e.g., 2022): "); int year = input.nextInt(); // Prompt the user to enter month System.out.print("Enter month as a number between 1 and 12: "); int month = input.nextInt(); // Print calendar for the month of the year printMonth(year, month); } public static void printMonth(int year, int month) { // Print the headings of the calendar printMonthTitle(year, month); // Print the body of the calendar printMonthBody(year, month); } public static void printMonthTitle(int year, int month) { System.out.println(" " + getMonthName(month) + " " + year); System.out.println("-----------------------------"); System.out.println(" Sun Mon Tue Wed Thu Fri Sat"); } public static String getMonthName(int month) { String monthName = ""; switch (month) { case 1: monthName = "January"; break; case 2: monthName = "February"; break; case 3: monthName = "March"; break; case 4: monthName = "April"; break; case 5: monthName = "May"; break; case 6: monthName = "June"; break; case 7: monthName = "July"; break; case 8: monthName = "August"; break; case 9: monthName = "September"; break; case 10: monthName = "October"; break; case 11: monthName = "November"; break; case 12: monthName = "December"; } return monthName; } public static void printMonthBody(int year, int month) { // Get start day of the week for the first date in the month int startDay = getStartDay(year, month); // Get number of days in the month int numberOfDaysInMonth = getNumberOfDaysInMonth(year, month); // Pad space before the first day of the month int i = 0; for (i = 0; i < startDay; i++) System.out.print(" "); for (i = 1; i <= numberOfDaysInMonth; i++) { System.out.printf("%4d", i); if ((i + startDay) % 7 == 0) System.out.println(); } System.out.println(); } public static int getStartDay(int year, int month) { final int START_DAY_FOR_JAN_1_1800 = 3; // Get total number of days from 1/1/1800 to month/1/year int totalNumberOfDays = getTotalNumberOfDays(year, month); // Return the start day for month/1/year return (totalNumberOfDays + START_DAY_FOR_JAN_1_1800) % 7; } public static int getTotalNumberOfDays(int year, int month) { int total = 0; // Get the total days from 1800 to 1/1/year for (int i = 1800; i < year; i++) if (isLeapYear(i)) total = total + 366; else total = total + 365; // Add days from Jan to the month prior to the calendar month for (int i = 1; i < month; i++) total = total + getNumberOfDaysInMonth(year, i); return total; } public static int getNumberOfDaysInMonth(int year, int month) { if (month == 1 || month == 3 || month == 5 || month == 7 || month == 8 || month == 10 || month == 12) return 31; if (month == 4 || month == 6 || month == 9 || month == 11) return 30; if (month == 2) return isLeapYear(year) ? 29 : 28; return 0; // If month is incorrect } public static boolean isLeapYear(int year) { return year % 400 == 0 || (year % 4 == 0 && year % 100 != 0); } } ```
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值