用Java写一动态新年倒计时

import java.time.LocalDateTime;
import java.time.temporal.ChronoUnit;

public class DynamicNewYearCountdown {
    public static void main(String[] args) {
        LocalDateTime now = LocalDateTime.now();
        int currentYear = now.getYear();
        LocalDateTime newYear = LocalDateTime.of(currentYear + 1, 1, 1, 0, 0, 0);

        while (now.isBefore(newYear)) {
            now = LocalDateTime.now();
            long secondsRemaining = now.until(newYear, ChronoUnit.SECONDS);
            long hours = secondsRemaining / 3600;
            long minutes = (secondsRemaining % 3600) / 60;
            long seconds = secondsRemaining % 60;
            System.out.println("距离新年还有:" + hours + "小时 " + minutes + "分钟 " + seconds + "秒");
            try {
                Thread.sleep(1000); // 每隔1秒更新一次倒计时
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        }

        System.out.println("新年快乐!");
    }
}

 

注意:这个示例假设新年始终在每年的1月1日。您可以根据需要进行修改和扩展,例如考虑闰年、特定时区等

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值