返回列表 發帖
本帖最後由 張彥承 於 2014-3-15 17:13 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {

  6.    int player,computer;
  7.    srand(time(NULL));
  8.    int win=0,lose=0,draw=0;
  9.    string name[3]={"剪刀 ","石頭 ","布 "};
  10.    re:
  11.    cout<<"請猜拳 <1>剪刀 <2>石頭 <3>布 <4>結束 "<<endl;
  12.    cin>>player;
  13.    if(player==4)
  14.        goto end;
  15.    computer=rand()%3+1;
  16.    cout<<"你出:"<<name[player-1]<<endl;
  17.    cout<<"電腦出:"<<name[computer-1]<<endl;  
  18.    if(player==computer)
  19.    {
  20.      cout<<"平手"<<endl;
  21.      draw++;                  
  22.    }else if((player==1 && computer==3)||(player==2 && computer==1)||(player==3 && computer==2))
  23.    
  24.    {
  25.      cout<<"你贏了!"<<endl;
  26.      win++;   
  27.    }else
  28.    {
  29.    cout<<"你輸了!"<<endl;
  30.    lose++;  
  31.    }
  32.    cout<<endl;
  33.    goto re;
  34.    end:
  35.    cout<<"@@戰果分析@@"<<endl;
  36.    cout<<"贏了"<<win<<"次"<<"輸了"<<lose<<"次"<<"平手"<<draw<<"次"<<endl;
  37. system("pause");
  38. return 0;      
  39. }
複製代碼

TOP

  1. [code]#include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.   re:
  7.    int player,computer;
  8.    string name[3]={"剪刀 ","石頭 ","布 ",};
  9.    cout<<"***
  10.    cout<<"請猜拳 <1>剪刀 <2>石頭 <3>布 <4>結束 "<<endl;
  11.    cin>>player;
  12.    int win=0,lose=0,draw=0;
  13.    if(player==4)
  14.    g
  15.    srand(time(NULL));
  16.    computer=rand()%3+1;
  17.    cout<<"你出:"<<name[player-1]<<endl;
  18.    cout<<"電腦出:"<<name[computer-1]<<endl;  
  19.    if(player==computer`  {
  20.      cout<<"平手"<<endl;
  21.      draw++;                  
  22.    }else if((player==1 && computer==3)||(player==2 && computer==1)||(player==3 && computer==2))
  23.    
  24.    {
  25.      cout<<"你贏了!"<<endl;
  26.      win++;   
  27.    }else
  28.    {
  29.    cout<<"你輸了!"<<endl;
  30.    lose++;  
  31.    }
  32.    cout<<endl;
  33.     goto re;

  34.     end:

  35.     cout<<"---戰果統計---"<<endl;

  36.     cout<<"總共贏了"<<win<"次,輸了"<<lose<<"次,平手"<<draw<<"次"<<endl;
  37.    cout<<"@@戰果分析@@"<<endl;
  38. system("pause");
  39. return 0;      
  40. }
複製代碼
[/code]

TOP

返回列表