Board logo

標題: 賽馬程式 (一) [打印本頁]

作者: 張翼安    時間: 2016-5-28 11:03     標題: 賽馬程式 (一)

本帖最後由 張翼安 於 2016-6-25 11:25 編輯

賽馬程式 (一)

馬:◆,★,▲,●
試設計出如下之執行畫面:

作者: 張健勳    時間: 2016-5-28 12:00

本帖最後由 張健勳 於 2016-6-18 11:04 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.         cout<<"『DarknessSoul』賽馬場"<<endl;
  7.         cout<<"---------------------------------------------------------------------| 終點"<<endl;  //69+1
  8.                     string horse[4]={"◆","★","▲","●"};
  9.                     for ( int i=0 ; i<4 ; i++ )
  10.                     cout <<  horse[i] << endl;
  11.         cout<<"---------------------------------------------------------------------| 終點"<<endl;  //69+1
  12.    system("pause");
  13.    return 0;
  14. }
複製代碼

作者: 蔡季樺    時間: 2016-5-29 14:00

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     string horse[4]={"◆","★","▲","●"};
  7.     cout<<"$$$「包你賺」賽馬場 $$$"<<endl;
  8.     cout<<"---------------------------------------------------------------------|終點!"<<endl;
  9.     for(int i=0;i<=3;i++)
  10.     {   
  11.         cout<<horse[i]<<endl;
  12.     }      
  13.     system("pause");
  14.     return 0;   
  15. }
複製代碼

作者: 吳承勳    時間: 2016-6-18 10:58

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main(){
  5.     string horse[4]={"◆", "★", "▲", "●"};
  6.     cout<<"好事成雙 賽馬場"<<endl;
  7.     cout<<"---------------------------------------------------------------------:終點"<<endl;
  8.     for(int i=0; i<4; i++)
  9.     {
  10.         cout<<horse[i]<<endl;
  11.     }
  12.     system("pause");
  13.     return 0;
  14. }
複製代碼





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