石頭剪刀布遊戲

bigbigship發表於2014-06-17

一 設計要求

在遊戲中,孩子們用手錶示石頭、剪刀或布中的一個,由拳頭表示石頭,伸出兩根手指

表示剪刀,伸手錶示布,孩子們面對面地從1數到3時做出他們的選擇,如果所作選擇是一樣的,則表示平局,否則就按如下規則決定勝負。

(1)      石頭砸壞剪刀。

(2)      剪刀剪碎布

(3)      布覆蓋石頭

程式設計實現計算機與人進行遊戲。

#include <iostream>
#include <ctime>
#include <cstdlib>
using namespace std;
void start()
{
        cout<<endl<<"          ============================================================"<<endl;
        cout<<endl<<"         |   ★    ★    ★     ★    ★     ★     ★    ★          |"<<endl;
        cout<<endl<<"         |            歡迎您進入石頭剪刀布的遊戲世界                  |"<<endl;
        cout<<endl<<"         |                                                            |"<<endl;
        cout<<endl<<"         |                                     AUTHOR---bigbigship    |"<<endl;
        cout<<endl<<"          ============================================================"<<endl;
}
int win=0,pin=0,lose=0;
int robot()
{
    int n1;
    srand((unsigned)time(0));
    n1=rand()%3;
    return n1;
}
bool menu()
{
    cout<<"          menu"<<endl;
    cout<<"              s.開始遊戲"<<endl;
    cout<<"              e.結束遊戲"<<endl<<"          ";
    char x;
    cin>>x;
    if(x=='s')
        return 1;
    else
        return 0;
}
void VS()
{
    cout<<endl<<"          |**=======================新一局=======================**|"<<endl;
    cout<<endl<<"                     1.出剪刀"<<endl;
    cout<<endl<<"                     2.出石頭"<<endl;
    cout<<endl<<"                     3.出布"<<endl;
    cout<<endl<<"          |********************************************************|"<<endl;
    cout<<endl<<"          請選擇:   ";
    int x;
    char c;
    cin>>x;
    cout<<endl;
    int t=robot()+1;
    switch(t)
    {
        case 1:cout<<endl<<"          對方選擇了剪刀"<<endl;break;
        case 2:cout<<endl<<"          對方選擇了石頭"<<endl;break;
        case 3:cout<<endl<<"          對方選擇了布"<<endl;
    }
    if(t==x){
        pin++;
        cout<<endl<<"          勢均力敵"<<endl;
    }
    else if((t==1&&x==2)||(t==2&&x==3)||(t==3&&x==1)){
        win++;
        cout<<endl<<"          你贏了!!"<<endl;
    }
    else{
        lose++;
        cout<<endl<<"          你輸了。。。"<<endl;
    }
    cout<<"          戰況: 贏 "<<win<<"次  平 "<<pin<<" 次 輸 "<<lose<<endl;
    cout<<endl<<"          |-------------------------------------------------------|"<<endl;
    cout<<"          do you want to continue?(y/n)    ";
    cin>>c;
    cout<<endl;
    if(c=='y')
        VS();
    else
        return ;
}
int main()
{
    start();
    if(menu())
       VS();
    return 0;
}


相關文章