返回列表 發帖

跑馬燈 (四)

本帖最後由 張翼安 於 2016-5-28 11:07 編輯

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

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表