printf固定一行打印倒计时的实现

@2019-07-15

【小记】

 1 #include<stdlib.h>
 2 #include <stdio.h>
 3 #include <time.h>
 4 #include <windows.h>
 5 
 6 
 7 
 8 int main()
 9 {
10     int i;
11 
12 #if 1
13     int bootdelay = 3;
14     printf("Hit any key to stop autoboot: %2ds ", bootdelay);    //"%2ds " 2byte数字 1字节's' 1字节空格
15     fflush(stdout);
16     while(bootdelay > 0)
17     {
18         Sleep(1000);
19         --bootdelay;
20         printf("\b\b\b\b%2ds ", bootdelay);    //因格式占4byte,所以需要4个'\b' backspace 退格非删除
21         fflush(stdout);
22     }
23 #endif
24     printf("\n");
25     
26     printf(".................\n");
27     for(i = 5; i > -1; i--)
28     {
29         if(i == 5)
30         {
31             printf("Wait %ds", i);
32             fflush(stdout);
33             Sleep(1000);
34         }
35         else
36         {
37             printf("\b\b%ds", i);
38             fflush(stdout);
39             Sleep(1000);
40         }
41     }
42     
43     printf("\n");    
44     
45     return 0;
46 }

 

转载于:https://www.cnblogs.com/skullboyer/p/11188447.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值