7.先输入一个年份,再输入一个1到365/366的天数,输出这一天所在的月份及当月日期,m月d号。注意处理闰年。 提示:每月的天数放在数组中 用Java写
时间: 2024-03-23 07:36:50 浏览: 152
编写JAVA程序,判断是否闰年,输出月份天数
5星 · 资源好评率100%
好的,这是用Java实现的代码:
```java
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.print("请输入年份:");
int year = scanner.nextInt();
System.out.print("请输入天数(1~365/366):");
int day = scanner.nextInt();
// 判断是否为闰年
int[] monthDays;
if ((year % 4 == 0 && year % 100 != 0) || year % 400 == 0) {
monthDays = new int[]{31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}; // 闰年
} else {
monthDays = new int[]{31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}; // 平年
}
// 计算月份和日期
int month = 1;
while (day > monthDays[month - 1]) {
day -= monthDays[month - 1];
month++;
}
// 输出结果
System.out.printf("%d年%d天是%d月%d号。\n", year, day, month, day);
}
}
```
这个程序与上面的Python程序基本相同,只是用了Java语言实现。你可以将年份和天数输入,程序将自动计算出这一天所在的月份和当月日期。请注意,此程序默认输入的天数是合法的,如果输入了无效的天数,程序可能会出现错误。
希望这个回答能够帮助到你,有任何问题都可以继续问我哦!
阅读全文