所以我有一個函數(或者說,稍後我將把它變成一個函數)在控制檯窗口中做一個隨機的%進度;像這樣:製作控制檯進度條? (Windows)
#include <iostream>
#include <time.h>
#include <cmath>
#include <windows.h>
using namespace std;
int main()
{
srand(time(0));
int x = 0;
for(int i = 0; i<100; i++){
int r = rand() % 1000;
x++;
cout << "\r" << x << "% completed." << flush;
if(i < 43){
Sleep(r/6);
}else if(i > 43 && i < 74){
Sleep(r/8);
}else if(i < 98){
Sleep(r/5);
}else if(i > 97 && i != 99){
Sleep(2000);
}
}
cout << endl << endl << "Operation completed successfully.\n" << flush;
return 0;
}
的事情是,我所要的輸出是這樣的:
1% completed
|
(後...)
25% completed
|||||||||||||||||||||||||
我怎麼能這樣做?
在此先感謝!
超過兩行,你不能。在一行上如何「X%完成|||||」 ...「XX%已完成|||||||||||」 ...? –