返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main(){
  6. re:
  7.   srand(time(NULL));
  8.   string n[]={"剪刀","石頭","布"};
  9.   int computer,player;
  10.   cout<<"請出拳 <1>剪刀 <2>石頭 <3>布"<<endl;
  11.   cin>>player;
  12.   computer=rand()%3+1;
  13.   cout<<"你出"<<n[player-1]<<endl;
  14.   cout<<"電腦出"<<n[computer-1]<<endl;;
  15.   if(computer==player)
  16.     cout<<"平手"<<endl;
  17.   else if(computer==1 && player==2)
  18.     cout<<"你贏了"<<endl;
  19.   else if(computer==2 && player==3)
  20.     cout<<"你贏了"<<endl;
  21.   else if(computer==3 && player==1)
  22.     cout<<"你贏了"<<endl;
  23.   else if(computer==1 && player==3)
  24.     cout<<"你輸了"<<endl;
  25.   else if(computer==2 && player==1)
  26.     cout<<"你輸了"<<endl;
  27.   else if(computer==3 && player==2)
  28.     cout<<"你輸了"<<endl;
  29.   system("pause");
  30.   goto re;
  31.   return 0;
  32. }
複製代碼

TOP

返回列表