2.使用Switch从键盘分别输入年、月、日,判断这一天距离现在(2023年7月15日)是多少天(未来、过去)(默认一个月为30天)
时间: 2024-04-17 11:25:57 浏览: 76
好的,以下是使用 switch 语句从键盘输入年、月、日,并判断与当前日期(2023年7月15日)相差多少天的代码示例:
```java
import java.time.LocalDate;
import java.util.Scanner;
public class DaysDifference {
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();
System.out.print("请输入日期:");
int day = scanner.nextInt();
LocalDate currentDate = LocalDate.of(2023, 7, 15);
LocalDate inputDate = LocalDate.of(year, month, day);
int daysDifference;
if (inputDate.isAfter(currentDate)) {
daysDifference = (int) currentDate.until(inputDate).getDays();
System.out.println("这一天距离现在是未来的 " + daysDifference + " 天");
} else if (inputDate.isBefore(currentDate)) {
daysDifference = (int) inputDate.until(currentDate).getDays();
System.out.println("这一天距离现在是过去的 " + daysDifference + " 天");
} else {
System.out.println("这一天就是今天!");
}
}
}
```
运行以上代码,程序会要求你输入年、月、日。然后根据输入的日期与当前日期(2023年7月15日)的比较,计算出相差的天数,并输出结果。
注意,上述代码使用了 Java 8 中的 LocalDate 类来处理日期,并且默认一个月为30天。
希望能帮到你!如果还有其他问题,请随时提问。
阅读全文