Board logo

標題: [作業] 跑馬燈 (四) [打印本頁]

作者: 方浩葦    時間: 2024-7-13 07:27     標題: [作業] 跑馬燈 (四)

利用跑馬燈,顯示訊息 "歡迎光臨",變換方式如附件。

歡迎光臨.exe

本帖隱藏的內容需要回復才可以瀏覽

作者: 鄭豊翰    時間: 2024-7-13 11:29

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    int speed=500;
  7.    re:
  8.    for(int i=1; i<=15; i++)
  9.    {
  10.        if(i==1)
  11.            cout<<"歡   "<<endl;
  12.        if(i==2)
  13.            cout<<" 迎  "<<endl;
  14.        if(i==3)
  15.            cout<<"  光 "<<endl;
  16.        if(i==4)
  17.            cout<<"   臨"<<endl;
  18.        if(i==5)
  19.            cout<<"歡   "<<endl;
  20.        if(i==6)
  21.            cout<<"歡迎  "<<endl;
  22.        if(i==7)
  23.            cout<<"歡迎光 "<<endl;
  24.        if(i==8)
  25.            cout<<"歡迎光臨"<<endl;
  26.        if(i==9)
  27.            cout<<"    "<<endl;
  28.        if(i==10)
  29.            cout<<"歡迎光臨"<<endl;
  30.        if(i==11)
  31.            cout<<"    "<<endl;
  32.        if(i==12)
  33.            cout<<"歡迎光臨"<<endl;
  34.        if(i==13)
  35.            cout<<"    "<<endl;
  36.        if(i==14)
  37.            cout<<"歡迎光臨"<<endl;
  38.        if(i==15)
  39.            cout<<"    "<<endl;
  40.        _sleep(speed);
  41.        system("cls");
  42.    }
  43.    goto re;
  44.    system("pause");   
  45.    return 0;
  46. }
複製代碼

作者: 邱博宥    時間: 2024-8-11 16:37

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7. re:
  8.     for(int a=1; a<=14; a++)
  9.     {
  10.         if (a==1)
  11.             cout<<"歡   "<<endl;
  12.         if (a==2)
  13.             cout<<" 迎   "<<endl;
  14.         if (a==3)
  15.             cout<<"  光 "<<endl;
  16.         if (a==4)
  17.             cout<<"   臨"<<endl;
  18.         if (a==5)
  19.             cout<<"歡   "<<endl;
  20.         if (a==6)
  21.             cout<<"歡迎  "<<endl;
  22.         if (a==7)
  23.             cout<<"歡迎光 "<<endl;
  24.         if (a==8)
  25.             cout<<"歡迎光臨"<<endl;
  26.         if (a==9)
  27.             cout<<"    "<<endl;
  28.         if (a==10)
  29.             cout<<"歡迎光臨"<<endl;
  30.         if (a==11)
  31.             cout<<"    "<<endl;
  32.         if (a==12)
  33.             cout<<"歡迎光臨"<<endl;
  34.         if (a==13)
  35.             cout<<"    "<<endl;
  36.         if (a==14)
  37.             cout<<"歡迎光臨"<<endl;

  38.         _sleep(200);
  39.         system("cls");
  40.     }
  41.     goto re;
  42.     return 0;
  43. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/) Powered by Discuz! 7.2