返回列表 發帖
本帖最後由 張郁庭 於 2014-3-15 16:55 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int player,computer;
  7.     int win=0, lost=0, draw=0;
  8.     srand(time(NULL));
  9.     cout<<"☆☆☆猜拳遊戲☆☆☆"<<endl<<endl;
  10.     re:
  11.     string name[3]={"剪刀","石頭","布"};
  12.     cout<<"請出拳!  (1) 剪刀 (2) 石頭 (3) 布 (4)戰果統計"<<endl;
  13.     cin>>player;
  14.     if(player>=1 && player<=3)
  15.     {      
  16.             computer=rand()%3+1;
  17.       cout<<"你出"<<name[player-1]<<endl;
  18.       cout<<"電腦出"<<name[computer-1]<<endl;
  19.       if(player==computer)
  20.       {
  21.           cout<<"平手!"<<endl;
  22.           draw++;
  23.             goto re;
  24.       }else if((player==1 && computer==3)||
  25.                (player==2 && computer==1)||
  26.                (player==3 && computer==2))
  27.       {
  28.           cout<<"你贏了!"<<endl;  
  29.           win++;
  30.           goto re;
  31.       }else
  32.       {
  33.           cout<<"電腦贏了!"<<endl;  
  34.           lost++;
  35.           goto re;
  36.       }
  37.     }else if(player==4)
  38.     {
  39.         goto end;         
  40.     }else
  41.     {
  42.         cout<<"輸入錯誤!"<<endl;
  43.         goto re;
  44.     }
  45.     cout<<endl;
  46.     end:
  47.     cout<<"※※※戰果統計※※※"<<endl;
  48.     cout<<"贏"<<win<<"次"<<endl;
  49.     cout<<"輸"<<lost<<"次"<<endl;
  50.     cout<<"平手"<<draw<<"次"<<endl;
  51.     system("pause");
  52.     return 0;
  53. }
複製代碼

TOP

返回列表