- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- string block[]={"",
- "■",
- "■■",
- "■■■",
- "■■■■",
- "■■■■■",
- "■■■■■■",
- "■■■■■■■",
- "■■■■■■■■",
- "■■■■■■■■■"};
- for(int i=0; i<=100; i++){
- if(i==100)
- cout<<"完成";
- else{
- cout<<i<<"%"<<endl;
- cout<<block[i%10];
- //酷酷的正方形
- _sleep(i);
- }
- system("cls");
- }
- system("pause");
- return 0;
- }
複製代碼 |