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); } }
添加回答
举报
0/150
提交
取消