终端打印彩色进度条
Posted fanchenxinok
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了终端打印彩色进度条相关的知识,希望对你有一定的参考价值。
#include<stdio.h>
#include<unistd.h>
void draw_progress(int pos)
pos = (pos < 0) ? 0 : pos;
pos = (pos > 100) ? 100 : pos;
char bar[102]='\\0';
const char *state = "-\\\\|/";
printf(" \\033[0;31;43m%-100s\\033[0m[%d%%]\\r", bar, pos);
printf("[%c]\\033[0;46m%*s\\033[0m\\r", state[pos % 4], pos, bar);
fflush(stdout);//清除读写缓冲区
int main()
int i = 0;
for(; i < 100; i++)
printf("%d%% \\r", i);
usleep(20000);
fflush(stdout);
printf("\\n");
i = 0;
while(i <= 100)
draw_progress(i);
usleep(200000);
i++;
printf("\\n");
return 0;
效果如下:
以上是关于终端打印彩色进度条的主要内容,如果未能解决你的问题,请参考以下文章