命令行模擬進度條

每次看到別人的黑框程序在安裝什麼包,或者操做某個東西的時候,都有個動態的進度條,感受很逼真的樣子。ios

此次我們也模擬一個簡易的進度條。運行效果圖以下。spa

完整代碼:blog

#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 << "\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b";	//回刪全部
	cout << chArr << (int)((float)iCurrentValue / (float)iMaxValue * 100) << "%";	// 輸出進度條 
}

int main()
{
	for (int i=0; i <= 100; i++)
	{
		Sleep(100);
		processbar(100, i);
	}
	
	return 0;
}
相關文章
相關標籤/搜索