Board logo

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

作者: 陳品肇    時間: 2018-12-1 00:57     標題: 跑馬燈 (四)

本帖最後由 陳品肇 於 2019-4-11 14:34 編輯

使文字訊息在畫面上反覆地左右移動.
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     re:
  7.     int j=0;
  8.     for(int i=1; i<=300; i++)
  9.     {
  10.          if(i>=1 && i<=150 && i%3==0)
  11.               j++;
  12.          if(i>=151 && i<=300 && i%3==0)
  13.               j--;
  14.          for(int i=1; i<=j; i++)
  15.          {
  16.               cout<<" ";
  17.          }
  18.          cout<<"歡迎光臨";
  19.          system("cls");
  20.     }
  21.     goto re;
  22.     system("pause");
  23.     return 0;
  24. }
複製代碼

作者: 蔡依宸    時間: 2018-12-1 17:05

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     re:
  7.     int j=0;
  8.     for(int i=1;i<=300;i++)
  9.     {
  10.             if(i>=1 && i<=150 && i%3==0)
  11.                      j++;
  12.             if(i>=151 && i<=300 && i%3==0)
  13.                      j--;
  14.             for(int k=1;k<=j;k++)
  15.             {
  16.                     cout<<"   ";
  17.             }
  18.             cout<<"去死吧";
  19.             system("cls");
  20.     }
  21.     goto re;
  22.     system("pause");
  23.     return 0;   
  24. }
複製代碼

作者: 譚詩澐    時間: 2018-12-1 17:06

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     re:
  7.     int j=0;
  8.     for(int i=1; i<=300; i++)
  9.     {
  10.        if(i>=1 && i<=150 && i%3==0)
  11.         j++;
  12.        if(i>=151 && i<=300 && i%3==0)
  13.         j--;
  14.        for(int k=1; k<=j; k++)
  15.        {
  16.                cout<<"★";
  17.        }
  18.         cout<<"歡迎光臨";
  19.          system("cls");
  20.       
  21.     }
  22. goto re;
  23.     system("pause");
  24.     return 0;   
  25. }
複製代碼

作者: 蔡季庭    時間: 2018-12-1 17:15

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     re:
  7.     int j=0;
  8.     for(int i=1;i<=250 ;i++)
  9.     {
  10.        if(i>=1 && i<=125 && i%3==0)
  11.         j++;
  12.        if(i>=126 && i<=250 && i%3==0)
  13.         j--;
  14.         for(int k=1;k<=j;k++)
  15.         {
  16.                 cout<<" ";
  17.         }
  18.         cout<<"cj0 u/6ejl xup6";         
  19.            system("cls");
  20.    }
  21.     goto re;         
  22.     system("pause");   
  23.     return 0;
  24. }
複製代碼

作者: 陳柏霖    時間: 2018-12-7 19:52

本帖最後由 陳柏霖 於 2018-12-7 20:12 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     re:
  7.     for(int i=1; i<=6; i++)
  8.     {
  9.         if(i==1)
  10.         {
  11.             cout<<"㊣㊣㊣      ";
  12.         }
  13.         if(i==2)
  14.         {
  15.             cout<<"  ㊣㊣㊣    ";
  16.         }
  17.         if(i==3)
  18.         {
  19.             cout<<"    ㊣㊣㊣  ";
  20.         }
  21.         if(i==4)
  22.         {
  23.             cout<<"      ㊣㊣㊣";
  24.         }
  25.         if(i==5)
  26.         {
  27.             cout<<"    ㊣㊣㊣  ";
  28.         }
  29.         if(i==6)
  30.         {
  31.             cout<<"  ㊣㊣㊣    ";
  32.         }
  33.         _sleep(300);
  34.         system("cls");
  35.     }
  36.     goto re;
  37.     system("pause");
  38.     return 0;
  39. }
複製代碼

作者: 戴安利    時間: 2018-12-8 19:02

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {   
  6.    re:
  7.    for(int i=0; i<40; i++)
  8.    {
  9.       if(i<20)
  10.       {
  11.          for(int j=0; j<i; j++)
  12.             cout<<"  ";
  13.       }
  14.       else
  15.       {
  16.          for(int j=0; j<40-i; j++)
  17.             cout<<"  ";
  18.       }
  19.       cout<<"歡迎光臨"<<endl;
  20.       _sleep(100);
  21.       system("cls");
  22.    }
  23.    goto re;
  24.    system("pause");
  25.    return 0;
  26. }
複製代碼

作者: 戴唯陞    時間: 2018-12-8 19:07

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     re:
  7.     int j=0;
  8.     for(int i=1;i<=300;i++)
  9.     {
  10.            if(i>=1 && i<=150 && i%3==0)
  11.                      j++;
  12.            if(i>=151 && i<=300 && i%3==0)
  13.                      j--;
  14.            for(int k=1;k<=j;k++)
  15.             {
  16.                     cout<<"   ";
  17.             }
  18.              cout<<"你好";
  19.              system("cls");
  20.     }
  21.     goto re;
  22.     system("pause");
  23.     return 0;   
  24. }
複製代碼





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