用Java写一个万年历
时间: 2024-04-29 22:25:40 浏览: 53
以下是用Java写的一个简单的万年历程序,可以输入年份和月份,输出该月的日历:
```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();
int days = getDaysOfMonth(year, month); // 获取该月的天数
int week = getFirstDayOfWeek(year, month); // 获取该月的第一天是星期几
System.out.println("\n----------------------");
System.out.println(" " + year + "年" + month + "月");
System.out.println("----------------------");
System.out.println("日 一 二 三 四 五 六");
// 打印日历
int count = 0;
for (int i = 1; i <= days; i++) {
if (i == 1) {
for (int j = 0; j < week; j++) {
System.out.print(" ");
count++;
}
}
System.out.printf("%2d ", i);
count++;
if (count % 7 == 0) {
System.out.println();
}
}
}
// 获取该月的天数
public static int getDaysOfMonth(int year, int month) {
if (month == 2) {
if (year % 4 == 0 && year % 100 != 0 || year % 400 == 0) {
return 29;
} else {
return 28;
}
} else if (month == 4 || month == 6 || month == 9 || month == 11) {
return 30;
} else {
return 31;
}
}
// 获取该月的第一天是星期几
public static int getFirstDayOfWeek(int year, int month) {
int h = 1;
int m = 13;
int k = year % 100;
int j = year / 100;
int q = 1;
if (month == 1 || month == 2) {
month += 12;
q = 0;
}
int week = (h + 26 * (m + 1) / 10 + k + k / 4 + j / 4 + 5 * j + q) % 7;
return (week + 6) % 7;
}
}
```
运行结果如下:
```
请输入年份:2021
请输入月份:9
----------------------
2021年9月
----------------------
日 一 二 三 四 五 六
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30
```
阅读全文