返回列表 發帖

猜拳遊戲(四)

加入三戰兩勝的模式

  1. #include <iostream>
  2. #include <cstdlib>
  3. #include <time.h>
  4. using namespace std;
  5. int main()
  6. {
  7.      srand(time(NULL));
  8.     int player=0;
  9.     int com=0;
  10.     int my=0;
  11.     int comp=0;
  12.     int game=1;
  13.     string mora[]={"剪刀","石頭","布"};
  14.     for(int i=game;i<=3;i++)
  15.     {
  16.     cout<<"第"<<i<<"局"<<" 玩家: "<<my<<"電腦: "<< comp<<endl;
  17.     cout<<"========================"<<endl;
  18.     cout<<"輸入你要的拳(1:剪刀,2:石頭,3:布)"<<endl;
  19.     cin>>player;
  20.     cout<<"電腦出拳中"<<endl;
  21.     com=(rand()%3)+1;
  22.     cout << "你出:" << mora[player-1] << endl;
  23.     cout << "電腦出:" << mora[com-1] << endl;
  24.     if(player==com)
  25.     {
  26.         cout<<"平手"<<endl;
  27.     }
  28.     else if(player==1&&com==3)
  29.     {
  30.         cout<<"贏"<<endl;
  31.         my++;
  32.     }
  33.     else if(player==2&&com==1)
  34.     {
  35.         cout<<"贏"<<endl;
  36.         my++;
  37.     }
  38.     else if(player==3&&com==2)
  39.     {
  40.         cout<<"贏"<<endl;
  41.         my++;
  42.     }
  43.     else
  44.     {
  45.         cout<<"輸"<<endl;
  46.         comp++;
  47.     }
  48.     if(my==2||comp==2)
  49.     {break;
  50.     }
  51.     cout<<"========================"<<endl;
  52.     cout<<endl;
  53. }
  54.      cout<<"玩家: "<<my<<"電腦: "<< comp<<endl;
  55.      if(my>comp)
  56.      {
  57.      cout<<"你贏"<<endl;           
  58.      }
  59.      else
  60.      {cout<<"電腦贏了"<<endl;
  61.      }
  62.     system("pause");
  63.     return 0;     
  64. }
複製代碼

TOP

  1. #include <iostream>
  2. #include <cstdlib>
  3. #include <time.h>
  4. using namespace std;
  5. int main()
  6. {
  7.     string card[3]={"剪刀","石頭","布"};
  8.     string win[3]={"你贏","電腦贏","平手"};
  9.     int player=0;
  10.     int com=0;
  11.     int game=1;
  12.     int mypoint=0;
  13.     int compoint=0;
  14.     for(int i=game;i<=3;i++)
  15.     {
  16.         cout<<"第"<<i<<"局"<<"\t玩家: "<<mypoint<<"電腦: "<<compoint<<endl;
  17.         cout<<"輸入你要的拳(1.剪刀2.石頭3.布)"<<endl;
  18.         cin>>player;
  19.         cout<<"電腦出拳中..."<<endl;
  20.         srand(time(NULL));
  21.         com=(rand()%3)+1;
  22.         cout << "你出:"<<card[player]<<endl;
  23.         cout << "電腦出:"<<card[com]<<endl;
  24.         if(player==1&&com==3)
  25.         {
  26.             cout<<win[0]<<endl;
  27.             mypoint++;
  28.         }
  29.         if(player==1&&com==2)
  30.         {
  31.             cout<<win[1]<<endl;
  32.             compoint++;
  33.         }
  34.         if(player==2&&com==1)
  35.         {
  36.             cout<<win[0]<<endl;
  37.             mypoint++;
  38.         }
  39.         if(player==2&&com==3)
  40.         {
  41.             cout<<win[1]<<endl;
  42.             compoint++;
  43.         }
  44.         if(player==3&&com==2)
  45.         {
  46.             cout<<win[0]<<endl;
  47.             mypoint++;
  48.         }
  49.         if(player==2&&com==3)
  50.         {
  51.             cout<<win[1]<<endl;
  52.             compoint++;
  53.         }
  54.         else
  55.         {
  56.             cout<<win[2]<<endl;
  57.         }
  58.         if(compoint==2||mypoint==2)
  59.             break;   
  60.     }
  61.     cout<<"\t玩家: "<<mypoint<<"電腦: "<<compoint<<endl;
  62.     if(mypoint>compoint)
  63.     {
  64.         cout<<win[0]<<endl;
  65.     }
  66.     else
  67.     {
  68.         cout<<win[1]<<endl;
  69.     }
  70.     system("PAUSE");
  71.     return 0;
  72. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    
  7.    srand(time(NULL));

  8.    int player =0;
  9.    int com =0;
  10.    int mypoint=0;
  11.    int compoint=0;
  12.    int game=1;
  13.    string mora[] = {"剪刀","石頭","布"};
  14.    for(int i=game;i<=3;i++)
  15.    {
  16.    cout<<"第"<<i<<"局"<<"玩家"<< mypoint<<"電腦"<<compoint<<endl;
  17.   
  18.    
  19.    cout << "請選擇想要出的拳 (1:剪刀 2:石頭 3:布)"<< endl;
  20.    cin >> player;
  21.    cout << "電腦出拳中..." << endl;
  22.    com = (rand()%3)+1;
  23.    cout << "你出:" << mora[player-1] << endl;
  24.    cout << "電腦出:" << mora[com-1] << endl;
  25.    
  26.    if(player == 1 && com==3) {
  27.      cout << "你贏了" << endl;
  28.      mypoint++;
  29.    }
  30.    else if(player == 2 && com==1) {
  31.      cout << "你贏了" << endl;
  32.      mypoint++;
  33.    }
  34.    else if(player == 3 && com==2) {
  35.      cout << "你贏了" << endl;
  36.      mypoint++;
  37.    }
  38.    else if(player == com) {
  39.     cout << "平手" << endl;
  40.    
  41.    }
  42.    else {
  43.     cout << "你輸了" << endl;
  44.     compoint++;
  45.    }
  46.    if(mypoint==2||compoint==2){  
  47.    break;                             
  48.    }
  49. }

  50.    cout<<"最後結果:"<<"玩家:"<<mypoint<<"電腦:"<<compoint<<endl;
  51.    if(mypoint>compoint){
  52.     cout<<"玩家贏"<<endl;
  53.                                                   
  54.    }
  55.    else{
  56.     cout<<"電腦贏"<<endl;  
  57.    }

  58.    system("pause");
  59.    return 0;  
  60. }
複製代碼

TOP

  1. #include <iostream>
  2. #include <cstdlib>
  3. #include <time.h>
  4. using namespace std;
  5. int main()
  6. {
  7.      srand(time(NULL));
  8.     int player=0;
  9.     int com=0;
  10.     int my=0;
  11.     int comp=0;
  12.     int game=1;
  13.     string mora[]={"剪刀","石頭","布"};
  14.     for(int i=game;i<=3;i++)
  15.     {
  16.     cout<<"第"<<i<<"局"<<" 玩家: "<<my<<"電腦: "<< comp<<endl;
  17.     cout<<"========================"<<endl;
  18.     cout<<"輸入你要的拳(1:剪刀,2:石頭,3:布)"<<endl;
  19.     cin>>player;
  20.     cout<<"電腦出拳中"<<endl;
  21.     com=(rand()%3)+1;
  22.     cout << "你出:" << mora[player-1] << endl;
  23.     cout << "電腦出:" << mora[com-1] << endl;
  24.     if(player==com)
  25.     {
  26.         cout<<"平手"<<endl;
  27.     }
  28.     else if(player==1&&com==3)
  29.     {
  30.         cout<<"贏"<<endl;
  31.         my++;
  32.     }
  33.     else if(player==2&&com==1)
  34.     {
  35.         cout<<"贏"<<endl;
  36.         my++;
  37.     }
  38.     else if(player==3&&com==2)
  39.     {
  40.         cout<<"贏"<<endl;
  41.         my++;
  42.     }
  43.     else
  44.     {
  45.         cout<<"輸"<<endl;
  46.         comp++;
  47.     }
  48.     if(my==2||comp==2)
  49.     {break;
  50.     }
  51.     cout<<"========================"<<endl;
  52.     cout<<endl;
  53. }
  54.      cout<<"玩家: "<<my<<"電腦: "<< comp<<endl;
  55.      if(my>comp)
  56.      {
  57.      cout<<"你贏"<<endl;           
  58.      }
  59.      else
  60.      {cout<<"電腦贏了"<<endl;
  61.      }
  62.     system("pause");
  63.     return 0;     
  64. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<time.h>
  4. using namespace std;
  5. int main()
  6. {
  7.   re:
  8.   system("cls");        
  9.   srand(time(NULL));
  10.   int com=0;
  11.   int player=0;
  12.   int mypoint=0;
  13.   int compoint=0;
  14.   int game=1;
  15.   cout<< "==========☆★☆猜拳遊戲☆★☆==========" <<endl;
  16.   cout<<endl;
  17.   for(int i=game;i<=3;i++)
  18.   {
  19.    string mora[]={"剪刀","石頭","布"};
  20.    cout<< "   玩家:"<<mypoint<<"       第"<<i<<"局     "<<"     電腦:"<<compoint<<endl;
  21.    cout<< "========================================" <<endl;
  22.    cout<< "請輸入你想要出的拳   (1)剪刀(2)石頭(3)布" <<endl;
  23.    cin>>player;
  24.    cout<< "電腦出拳中..." <<endl;
  25.    com=(rand()%3)+1;
  26.    cout<<"你出"<<mora[player-1]<<endl;
  27.    cout<< "電腦出" << mora[com-1] <<endl;
  28.    if(player==1&&com==3)
  29.    {
  30.    cout<<"你贏了"<<endl;
  31.    mypoint++;
  32.    }
  33.    else if(player==2&&com==1)
  34.    {
  35.    cout<<"你贏了"<<endl;
  36.    mypoint++;
  37.    }
  38.    else if(player==3&&com==2)
  39.    {
  40.    cout<<"你贏了"<<endl;
  41.    mypoint++;
  42.    }
  43.    else if(player==com)
  44.    cout<<"平手"<<endl;
  45.    else
  46.    {
  47.    cout<<"你輸了"<<endl;   
  48.    compoint++;
  49.    }   
  50.    if( mypoint == 2 || compoint == 2)
  51.    break;
  52.    cout<<endl;
  53.   }
  54.    cout<< "========================================" <<endl;
  55.    cout<<endl;
  56.    cout<<"玩家:"<<mypoint<<endl;
  57.    cout<<"電腦:"<<compoint<<endl;
  58.    cout<<endl;
  59.    if( mypoint> compoint )
  60.    cout<<"玩家贏了"<<endl;
  61.    if( compoint> mypoint )
  62.    cout<<"電腦贏了"<<endl;
  63.   system("pause");
  64.   goto re;
  65.   return 0;
  66. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<time.h>
  4. using namespace std;
  5. int main()
  6. {
  7.     srand(time(NULL));
  8.     int player=0;
  9.     int com=0;
  10.     int mypoint=0;
  11.     int compoint=0;
  12.     int game=1;
  13.    
  14.     for(int i=game;i<4;i++)
  15.     {
  16.     string mora[] = {"剪刀","石頭","布"};
  17.     cout<<"玩家:"<<mypoint<<"            第"<<i<<"局"<<"           電腦:"<<compoint<<endl;
  18.     cout<<"======================================================="<<endl;
  19.     cout<<"請出拳(1)剪刀(2)石頭(3)布"<<endl;
  20.     cin>>player;
  21.     cout<<"電腦出拳中..."<<endl;     
  22.     com=(rand()%3)+1;      
  23.     cout <<"你出:"<< mora[player-1] << endl;
  24.     cout <<"電腦出:"<< mora[com-1] << endl;           
  25.      if(player == 1&&com==3)
  26.      {
  27.         cout << "你贏了" << endl;
  28.         mypoint++;
  29.      }
  30.     else if(player ==2&&com==1)
  31.      {
  32.         cout <<"你贏了"<< endl;
  33.         mypoint++;
  34.      }
  35.     else if(player == 3&&com==2)
  36.      {
  37.         cout <<"你贏了"<< endl;
  38.         mypoint++;
  39.      }
  40.     else if(player == com)
  41.      {
  42.         cout <<"平手"<< endl;
  43.      }
  44.     else
  45.      {
  46.         cout <<"你輸了"<< endl;
  47.         compoint++;
  48.      }
  49.      if(mypoint == 2 ||compoint == 2)   
  50.      {
  51.        break;
  52.      }
  53.        cout<<"======================================================="<<endl;
  54.        cout<<endl;
  55.     }
  56.     cout<<"玩家:"<<mypoint<<"           電腦:"<<compoint<<endl;
  57.    
  58.     if(mypoint>compoint)
  59.     {
  60.     cout<<"你贏了"<<endl;
  61.     }
  62.     else
  63.     {
  64.     cout<<"你輸了"<<endl;
  65.     }
  66.    
  67.     system("pause");   
  68.     return 0;
  69. }
複製代碼

TOP

返回列表