亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

Java實現簡單的萬年歷

小云
106
2023-08-14 14:57:32
欄目: 編程語言

以下是一個簡單的萬年歷的Java實現:

import java.util.Scanner;
public class Calendar {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.print("請輸入年份:");
int year = scanner.nextInt();
System.out.print("請輸入月份:");
int month = scanner.nextInt();
printCalendar(year, month);
}
public static void printCalendar(int year, int month) {
// 計算當前月份的第一天是星期幾
int firstDayOfWeek = getFirstDayOfWeek(year, month);
// 打印表頭
System.out.println(" 日  一  二  三  四  五  六");
// 打印空格
for (int i = 0; i < firstDayOfWeek; i++) {
System.out.print("    ");
}
// 打印日期
int daysInMonth = getDaysInMonth(year, month);
for (int i = 1; i <= daysInMonth; i++) {
System.out.printf("%3d ", i);
if ((i + firstDayOfWeek) % 7 == 0) {
System.out.println();
}
}
}
public static int getFirstDayOfWeek(int year, int month) {
int totalDays = 0;
// 計算從1900年1月1日到指定年月的總天數
for (int i = 1900; i < year; i++) {
totalDays += isLeapYear(i) ? 366 : 365;
}
for (int i = 1; i < month; i++) {
totalDays += getDaysInMonth(year, i);
}
// 計算指定年月的第一天是星期幾
return (totalDays + 1) % 7;
}
public static boolean isLeapYear(int year) {
return (year % 4 == 0 && year % 100 != 0) || (year % 400 == 0);
}
public static int getDaysInMonth(int year, int month) {
if (month == 2) {
return isLeapYear(year) ? 29 : 28;
} else if (month == 4 || month == 6 || month == 9 || month == 11) {
return 30;
} else {
return 31;
}
}
}

運行該程序,用戶輸入年份和月份后,程序將打印出對應的萬年歷。

注意:以上代碼只是一個簡單的實現,沒有考慮閏年的特殊情況。實際上,閏年的2月份有29天,平年的2月份有28天。

0
浏阳市| 包头市| 白玉县| 疏附县| 子长县| 泰顺县| 阿拉尔市| 铜鼓县| 阿克陶县| 准格尔旗| 惠州市| 来宾市| 蓬溪县| 衡阳县| 扶沟县| 七台河市| 沁源县| 云浮市| 灌阳县| 东辽县| 八宿县| 尤溪县| 台南市| 三明市| 连平县| 会泽县| 阜城县| 龙南县| 蕉岭县| 麻城市| 桐柏县| 乌鲁木齐市| 海兴县| 福清市| 泰宁县| 商河县| 洪江市| 永福县| 宁远县| 都江堰市| 蕲春县|