C/C++ 清屏输出,动态效果,应用程序运行进度
#include <stdio.h>#include <windows.h>int main(){for(int i = 0;i<100000000;i++){system("cls");printf("%d\n",i);}return 0;}