//控制台 倒计时函数
countdown = function(s){
var len = # tostring(s)
var backspace = string.repeat(len,'\b');
io.stdout.write("倒计时:",string.repeat(len,' ' ) /*预先分配被退格的字符*/ );
for(i=s;1;-1){
io.stdout.write(backspace/*退格清除原来的时间*/ + string.format("%0"+len+"d", i) )
sleep(1)
}
}
//打开控制台
io.open()
//开始倒计时
countdown(1000)
阅读(1599) | 评论(0) | 转发(0) |