请编写程序,使用LocalDateTime类获取日历对象,计算一百天之后是几年几月几日
时间: 2023-08-12 14:03:01 浏览: 135
日历天计算程序
以下是使用LocalDateTime类获取日历对象,并计算一百天之后的日期的示例代码:
```java
import java.time.LocalDateTime;
import java.time.temporal.ChronoUnit;
public class LocalDateTimeExample {
public static void main(String[] args) {
// 获取当前时间的LocalDateTime对象
LocalDateTime now = LocalDateTime.now();
// 计算一百天之后的日期
LocalDateTime futureDate = now.plus(100, ChronoUnit.DAYS);
// 获取计算结果的年、月、日
int year = futureDate.getYear();
int month = futureDate.getMonthValue();
int day = futureDate.getDayOfMonth();
// 打印输出计算结果
System.out.println("一百天之后是:" + year + "年" + month + "月" + day + "日");
}
}
```
运行以上代码,您将会在控制台输出一百天之后的日期,格式为 "xxxx年xx月xx日",其中的具体数值会根据当前时间而变化。
阅读全文