当前位置:   article > 正文

C语言控制台实现进度条_c语言控制台下载进度条源码

c语言控制台下载进度条源码

请添加图片描述

#include <windows.h>
#include <stdio.h>

static const char *ponit[]= {"\x20\x20", "\xA8\x87", "\xA8\x86", "\xA8\x84", "\xA8\x83", "\xA8\x80"}; //  ▏▎▍▊█

//int per 百分比范围(0 ~ 100)

void progress_bar(int per)
{
    int i=0;
    int num0=0;

    printf("\r  [");
    num0  = (100-per)/5;
    i = per;
    while(i>5)
    {
        printf("%s", ponit[5]);
        i -= 5;
    }
    if(i)
    {
        printf("%s", ponit[i]);
    }
    for(i=0; i<num0; i++)
    {
        printf("%s", ponit[0]);
    }
    printf("] %2d%%", per);
    if(per == 100)
    {
        printf("\n");
    }
}

void process_bar_test(void)
{
    int i = 0;

    for(i=0; i<=100; i++)
    {
        progress_bar(i);
        Sleep(100);
    }

//	set_console_color(COLOR_GREEN);
}

int main(int argc, char *argv[])
{
    process_bar_test();

    system("pause");
}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Gausst松鼠会/article/detail/264217
推荐阅读
相关标签
  

闽ICP备14008679号