本帖最後由 張郁庭 於 2014-3-15 16:55 編輯
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int player,computer;
- int win=0, lost=0, draw=0;
- srand(time(NULL));
- cout<<"☆☆☆猜拳遊戲☆☆☆"<<endl<<endl;
- re:
- string name[3]={"剪刀","石頭","布"};
- cout<<"請出拳! (1) 剪刀 (2) 石頭 (3) 布 (4)戰果統計"<<endl;
- cin>>player;
- if(player>=1 && player<=3)
- {
- computer=rand()%3+1;
- cout<<"你出"<<name[player-1]<<endl;
- cout<<"電腦出"<<name[computer-1]<<endl;
- if(player==computer)
- {
- cout<<"平手!"<<endl;
- draw++;
- goto re;
- }else if((player==1 && computer==3)||
- (player==2 && computer==1)||
- (player==3 && computer==2))
- {
- cout<<"你贏了!"<<endl;
- win++;
- goto re;
- }else
- {
- cout<<"電腦贏了!"<<endl;
- lost++;
- goto re;
- }
- }else if(player==4)
- {
- goto end;
- }else
- {
- cout<<"輸入錯誤!"<<endl;
- goto re;
- }
- cout<<endl;
- end:
- cout<<"※※※戰果統計※※※"<<endl;
- cout<<"贏"<<win<<"次"<<endl;
- cout<<"輸"<<lost<<"次"<<endl;
- cout<<"平手"<<draw<<"次"<<endl;
- system("pause");
- return 0;
- }
複製代碼 |