返回列表 發帖
本帖最後由 楊芊琦 於 2023-3-4 14:37 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int speed = 50;
  7.     int point = 0;
  8.        for(int i=2; i<=199; i++)
  9.        {
  10.        if(i<99)
  11.        {
  12.               cout<<"載入中";
  13.        }
  14.        else if(i==100)
  15.        {
  16.            cout<<"完成 ";
  17.            system("pause");
  18.            return 0;
  19.        }
  20.        if(i%4==0)
  21.                 cout<<""<<endl;
  22.        if(i%4==1)
  23.                cout<<"."<<endl;
  24.        if(i%4==2)
  25.                 cout<<".."<<endl;
  26.        if(i%4==3)
  27.                 cout<<"..."<<endl;
  28.        if(i!=100)
  29.                  cout<<"已載入"<<i<<"%"<<endl;
  30.        if(i%13==0)
  31.            cout<<"□□□□□□□□□□"<<endl;
  32.        if(i%13==1)
  33.            cout<<"■□□□□□□□□□"<<endl;
  34.        if(i%13==2)
  35.            cout<<"■■□□□□□□□□"<<endl;
  36.        if(i%13==3)
  37.            cout<<"■■■□□□□□□□"<<endl;
  38.        if(i%13==4)
  39.            cout<<"□■■■□□□□□□"<<endl;
  40.        if(i%13==5)
  41.            cout<<"□□■■■□□□□□"<<endl;
  42.        if(i%13==6)
  43.            cout<<"□□□■■■□□□□"<<endl;
  44.        if(i%13==7)
  45.            cout<<"□□□□■■■□□□"<<endl;
  46.        if(i%13==8)
  47.            cout<<"□□□□□■■■□□"<<endl;
  48.        if(i%13==9)
  49.            cout<<"□□□□□□■■■□"<<endl;
  50.        if(i%13==10)
  51.            cout<<"□□□□□□□■■■"<<endl;
  52.        if(i%13==11)
  53.            cout<<"□□□□□□□□■■"<<endl;
  54.        if(i%13==12)
  55.            cout<<"□□□□□□□□□■"<<endl;
  56.        _sleep(speed);
  57.        system("cls");
  58.        }
  59.        system("pause");
  60.     return 0;
  61. }
複製代碼

TOP

返回列表