为了账号安全,请及时绑定邮箱和手机立即绑定

请问这题中的刷新怎么实现??

请问这题中的刷新怎么实现??

qq_冥想_3 2018-05-13 16:16:44
查看完整描述

1 回答

?
产品经理不是经理

TA贡献481条经验 获得超143个赞

public class TimeCounter {
    public static void startCount(int begin){
            while (begin>0){
                System.out.println("还剩"+begin+"秒");
                try {
                    Thread.sleep(1000);
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
                begin = begin -1;
            }
    }

    public static void main(String[] args) {
        startCount(10);
    }
}


查看完整回答
1 反对 回复 2018-05-14
  • 1 回答
  • 0 关注
  • 953 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信