返回列表 發帖

賽馬程式 (一)

試設計出如下之執行畫面:
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     srand(time(NULL));
  7.     cout<<"「好事成雙」賽馬場"<<endl;
  8.     cout<<"|-------------------------------------------------------------------------|終點"<<endl;                                                                        
  9.     cout<<"◆"<<endl;
  10.     cout<<"★"<<endl;
  11.     cout<<"▲"<<endl;
  12.     cout<<"●"<<endl;
  13.     system("pause");        
  14.     return 0;
  15. }
複製代碼

TOP

  1. #include <iostream>
  2. #include <cstdlib>
  3. #include <time.h>
  4. using namespace std;
  5. int main()
  6. {   
  7.     srand(time(NULL));
  8.     cout<<"「賽馬場」"<<endl;
  9.     cout<<"|-----------------------------------------------------|終點"<<endl;
  10.     cout<<"ω"<<endl;
  11.     cout<<"£"<<endl;
  12.     cout<<"Θ"<<endl;
  13.     cout<<"卍"<<endl;
  14.     system("pause");
  15.     return 0;     
  16. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<time.h>
  4. using namespace std;
  5. int main()
  6. {
  7. srand (time(NULL));
  8. cout<<"☆★☆[好事成雙]賽馬場☆★☆"<<endl;
  9. cout<<"=========================================================|終點"<<endl;
  10. cout<<"◆"<<endl;
  11. cout<<"★"<<endl;
  12. cout<<"☆"<<endl;
  13. cout<<"●"<<endl;  
  14. system("pause");
  15. return 0;
  16. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<time.h>  
  4. using namespace std;
  5. int main()
  6. {
  7.     cout<<"「好事成雙」賽馬場"<<endl;
  8.     cout<<"--------------------------------------------------------------------------------"<<endl;
  9.     cout<<"●"<<endl;
  10.     cout<<"▼"<<endl;
  11.     cout<<"■"<<endl;
  12.     cout<<"★"<<endl;
  13.     system("pause");
  14.     return 0;
  15.       
  16. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     srand(time(NULL));
  7.     cout<<"「好事成雙」賽馬場"<<endl;
  8.     cout<<"|=================================================================================|終點"<<endl;                                                                        
  9.     cout<<"◆"<<endl;
  10.     cout<<"★"<<endl;
  11.     cout<<"▲"<<endl;
  12.     cout<<"●"<<endl;
  13.     system("pause");        
  14.     return 0;
  15. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<time.h>  
  4. using namespace std;
  5. int main()
  6. {
  7.     cout<<"「好事成雙」賽馬場"<<endl;
  8.     cout<<"-------------------------------------------------------------[終點"<<endl;
  9.     cout<<"●"<<endl;
  10.     cout<<"▼"<<endl;
  11.     cout<<"■"<<endl;
  12.     cout<<"★"<<endl;
  13.     system("pause");
  14.     return 0;
  15.       
  16. }
複製代碼

TOP

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     while(true)
  7.    
  8.    
  9.       cout<<" {好事成雙}賽馬場   "<<endl;
  10.       cout<<" ================================================== 終點 "<<endl;
  11.             cout<<"◆"<<endl;
  12.             cout<<"★"<<endl;
  13.             cout<<"▲"<<endl;
  14.             cout<<"●"<<endl;
  15.     system("pause");
  16.     return 0;     
  17. }
複製代碼

TOP

本帖最後由 吳秉翰 於 2018-5-5 14:38 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     cout<<"「好事成雙」賽馬場"<< endl;
  7.     cout<<"----------------------------------|終點"<<endl;
  8.     cout<<"◆"
  9.     cout<<"★"
  10.     cout<<"▲"
  11.     cout<<"●"
  12.     system("pause");
  13.     return 0;
  14. }
複製代碼

TOP

返回列表