#include#include //Sleep調用 using namespace std; int main(){ std::cout << "\n正在輸出記錄數據...... "; for( int i=0; i <= 100; i++ ) // 打印百分比 { std::cout.width(3);//i的輸出為3位寬 std::cout << i << "%"; Sleep(50); std::cout << "\b\b\b\b";//回刪三個字符,使數字在原地變化 } std::cout << "\n\n"; system("pause"); return 0; }