- [code]#include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- re:
- int player,computer;
- string name[3]={"剪刀 ","石頭 ","布 ",};
- cout<<"***
- cout<<"請猜拳 <1>剪刀 <2>石頭 <3>布 <4>結束 "<<endl;
- cin>>player;
- int win=0,lose=0,draw=0;
- if(player==4)
- g
- srand(time(NULL));
- computer=rand()%3+1;
- cout<<"你出:"<<name[player-1]<<endl;
- cout<<"電腦出:"<<name[computer-1]<<endl;
- if(player==computer` {
- cout<<"平手"<<endl;
- draw++;
- }else if((player==1 && computer==3)||(player==2 && computer==1)||(player==3 && computer==2))
-
- {
- cout<<"你贏了!"<<endl;
- win++;
- }else
- {
- cout<<"你輸了!"<<endl;
- lose++;
- }
- cout<<endl;
- goto re;
- end:
- cout<<"---戰果統計---"<<endl;
- cout<<"總共贏了"<<win<"次,輸了"<<lose<<"次,平手"<<draw<<"次"<<endl;
- cout<<"@@戰果分析@@"<<endl;
- system("pause");
- return 0;
- }
複製代碼 [/code] |