命令行模拟进度条
Posted hjsstudio
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了命令行模拟进度条相关的知识,希望对你有一定的参考价值。
每次看到别人的黑框程序在安装什么包,或者操作某个东西的时候,都有个动态的进度条,感觉很逼真的样子。
这次咱们也模拟一个简易的进度条。运行效果图如下。
完整代码:
#include<iostream> #include<Windows.h>//Sleep调用 using namespace std; void processbar(int iMaxValue, int iCurrentValue) { char chArr[] = "[....................] "; int iIndex = (float)iCurrentValue / (float)iMaxValue * 20; for (int i = 1; i <= iIndex; ++i) { chArr[i] = ‘#‘; } cout << ""; //回删所有 cout << chArr << (int)((float)iCurrentValue / (float)iMaxValue * 100) << "%"; // 输出进度条 } int main() { for (int i=0; i <= 100; i++) { Sleep(100); processbar(100, i); } return 0; }
以上是关于命令行模拟进度条的主要内容,如果未能解决你的问题,请参考以下文章