本帖最後由 楊芊琦 於 2023-3-4 14:37 編輯
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int speed = 50;
- int point = 0;
- for(int i=2; i<=199; i++)
- {
- if(i<99)
- {
- cout<<"載入中";
- }
- else if(i==100)
- {
- cout<<"完成 ";
- system("pause");
- return 0;
- }
- if(i%4==0)
- cout<<""<<endl;
- if(i%4==1)
- cout<<"."<<endl;
- if(i%4==2)
- cout<<".."<<endl;
- if(i%4==3)
- cout<<"..."<<endl;
- if(i!=100)
- cout<<"已載入"<<i<<"%"<<endl;
- if(i%13==0)
- cout<<"□□□□□□□□□□"<<endl;
- if(i%13==1)
- cout<<"■□□□□□□□□□"<<endl;
- if(i%13==2)
- cout<<"■■□□□□□□□□"<<endl;
- if(i%13==3)
- cout<<"■■■□□□□□□□"<<endl;
- if(i%13==4)
- cout<<"□■■■□□□□□□"<<endl;
- if(i%13==5)
- cout<<"□□■■■□□□□□"<<endl;
- if(i%13==6)
- cout<<"□□□■■■□□□□"<<endl;
- if(i%13==7)
- cout<<"□□□□■■■□□□"<<endl;
- if(i%13==8)
- cout<<"□□□□□■■■□□"<<endl;
- if(i%13==9)
- cout<<"□□□□□□■■■□"<<endl;
- if(i%13==10)
- cout<<"□□□□□□□■■■"<<endl;
- if(i%13==11)
- cout<<"□□□□□□□□■■"<<endl;
- if(i%13==12)
- cout<<"□□□□□□□□□■"<<endl;
- _sleep(speed);
- system("cls");
- }
- system("pause");
- return 0;
- }
複製代碼 |