返回列表 發帖

跑馬燈 (三)

利用跑馬燈的方式, 顯示訊息 "歡迎光臨".
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

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

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main(){
  5.     while(true){
  6.     for(int i=1; i<=12; i++)
  7.     {
  8.          if(i==1)
  9.              cout<<"歡";
  10.          if(i==2)
  11.              cout<<" 迎";
  12.          if(i==3)
  13.              cout<<"  光";
  14.          if(i==4)
  15.              cout<<"   臨";
  16.          if(i==5)
  17.              cout<<"歡";
  18.          if(i==6)
  19.              cout<<"歡迎";
  20.          if(i==7)
  21.              cout<<"歡迎光";
  22.          if(i==8)
  23.              cout<<"歡迎光臨";
  24.          if(i==9)
  25.              cout<<"";  
  26.          if(i==10)
  27.              cout<<"歡迎光臨";
  28.          if(i==11)
  29.              cout<<"";   
  30.          if(i==12)
  31.              cout<<"歡迎光臨";
  32.          _sleep(300);  //休眠300毫秒
  33.          system("cls");   
  34.          }   
  35.     }   
  36.     system("pause");
  37.     return 0;
  38. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main(){
  5.      while(true){   
  6.          cout<<"歡迎光臨"<<endl;
  7.          _sleep(500);
  8.          system("cls");
  9.          cout<<"        "<<endl;
  10.          _sleep(500);
  11.          system("cls");      
  12.          cout<<"歡迎    "<<endl;
  13.          _sleep(500);
  14.          system("cls");      
  15.          cout<<"    光臨"<<endl;
  16.          _sleep(500);
  17.          system("cls");      
  18.          cout<<"歡      "<<endl;
  19.          _sleep(500);
  20.          system("cls");      
  21.          cout<<"  迎    "<<endl;
  22.          _sleep(500);
  23.          system("cls");      
  24.          cout<<"    光  "<<endl;
  25.          _sleep(500);
  26.          system("cls");      
  27.          cout<<"      臨"<<endl;
  28.          _sleep(500);
  29.          system("cls");              
  30.          }
  31.          
  32.          
  33.          
  34.         system("pause");
  35.         return 0;
  36. }   
複製代碼

TOP

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

TOP

返回列表