返回列表 發帖

猜拳遊戲 (一)

本帖最後由 王瑞喻 於 2019-12-28 15:31 編輯

運用產生隨機亂數的技巧, 設計一個猜拳遊戲,
使用者可以選擇出剪刀、石頭或布, 電腦隨機出拳.


本帖隱藏的內容需要回復才可以瀏覽

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     srand(time(NULL));
  7.     int c,p;
  8.     cout<<"請出拳! (1)剪刀(2)石頭(3)布"<<endl;
  9.     cin>>p;
  10.     if(p==1)
  11.         cout<<"你出剪刀!"<<endl;
  12.     else if(p==2)
  13.         cout<<"你出石頭!"<<endl;
  14.     else
  15.         cout<<"你出布!"<<endl;
  16.     c=rand()%3+1;
  17.     if(c==1)
  18.         cout<<"電腦出剪刀!"<<endl;
  19.     else if(c==2)
  20.         cout<<"電腦出石頭!"<<endl;
  21.     else
  22.         cout<<"電腦出布!"<<endl;
  23.     system("pause");
  24.     return 0;
  25. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int P1,com;
  7.     srand(time(NULL));
  8.     cout<<"請出拳!!! <1>剪刀<2>石頭<3>布 :";
  9.     cin>>P1;
  10.     cout<<"你出";
  11.     if(P1==1)
  12.     {
  13.         cout<<"剪刀"<<endl;            
  14.     }else if(P1==2)
  15.     {
  16.         cout<<"石頭"<<endl;            
  17.     }else if(P1==3)
  18.     {
  19.         cout<<"布"<<endl;            
  20.     }else
  21.     {
  22.         cout<<"輸入錯誤!!!";   
  23.     }
  24.     com=rand()%3+1;
  25.     cout<<"電腦出";
  26.      if(com==1)
  27.     {
  28.         cout<<"剪刀"<<endl;            
  29.     }else if(com==2)
  30.     {
  31.         cout<<"石頭"<<endl;            
  32.     }else if(com==3)
  33.     {
  34.         cout<<"布"<<endl;            
  35.     }else
  36.     {
  37.         cout<<"輸入錯誤!!!";   
  38.     }   
  39.     system ("pause");   
  40.     return 0;
  41. }   
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     srand(time(NULL));
  7.     int player,computer;
  8.     cout<<"請出拳! (1)剪刀(2)石頭(3)布 !";
  9.     cin>>player;
  10.     computer=rand()%3+1;
  11.     cout<<"你出";
  12.     if (player==1)
  13.         cout<<"剪刀 !"<<endl;
  14.     else if(player==2)
  15.         cout<<"石頭 !"<<endl;
  16.     else
  17.         cout<<"布 !"<<endl;
  18.     if (computer==1)
  19.         cout<<"剪刀 !"<<endl;
  20.     else if(computer==2)
  21.         cout<<"石頭 !"<<endl;
  22.     else
  23.         cout<<"布 !"<<endl;
  24.     system("pause");
  25.     return 0;
  26. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     srand(time(NULL));
  7.     int player,computer;
  8.     cout<<"請出拳  (1)剪刀(2)石頭(3)布";
  9.     cin>>player;
  10.     computer=rand()%3+1;
  11.     cout<<"你出";
  12.     if(player==1)
  13.         cout<<"剪刀!"<<endl;   
  14.     else if(player==2)
  15.         cout<<"石頭!"<<endl;
  16.     else
  17.         cout<<"布!"<<endl;
  18.    
  19.     cout<<"電腦出";
  20.     if(computer==1)
  21.         cout<<"剪刀!"<<endl;   
  22.     else if(computer==2)
  23.         cout<<"石頭!"<<endl;
  24.     else
  25.         cout<<"布!"<<endl;
  26.      
  27.     system("pause");
  28.     return 0;
  29. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int computer,player;
  7.     srand(time(NULL));
  8.     cout<<"出拳(1)剪子(2)石子(3)布";
  9.     cin>>player;
  10.     computer = rand()%3+1;        
  11.     if(player ==1)
  12.         cout<<"你出剪子";
  13.     if(player ==2)
  14.         cout<<"你出石子";
  15.     if(player ==3)
  16.         cout<<"你出布";
  17.     cout<<endl;
  18.     if(computer ==1)
  19.         cout<<"電腦出剪子";
  20.     if(computer ==2)
  21.         cout<<"電腦出石子";
  22.     if(computer ==3)
  23.         cout<<"電腦出布";
  24.     system("pause");
  25.     return 0;   
  26. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     srand(time(NULL));
  7.     int player,comuter;
  8.     cout<<"請出拳!(1)剪刀(2)石頭(3)布";
  9.     cin>>player;
  10.     comuter=rand()%3+1;
  11.     cout<<"你出";
  12.     if(player==1)
  13.         cout<<"剪刀!"<<endl;
  14.     else if(player==2)
  15.         cout<<"石頭!"<<endl;
  16.     else
  17.         cout<<"布"<<endl;
  18.     cout<<"電腦出";
  19.     if(comuter==1)
  20.         cout<<"剪刀!"<<endl;
  21.     else if(comuter==2)
  22.         cout<<"石頭!"<<endl;
  23.     else
  24.         cout<<"布"<<endl;
  25.     system("pause");
  26.     return 0;
  27. }
複製代碼

TOP

本帖最後由 林孟蓁 於 2019-11-11 20:24 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     srand(time(NULL));
  7.     int computer,player;
  8.     cout<<"請出拳!  (1)剪刀 (2)石頭 (3)布";
  9.     cin>>player;
  10.     cout<<"你出";
  11.    computer=rand()%3+1;
  12.     if(player==1)
  13.         cout<<"剪刀!"<<endl;
  14.     else if(player==2)
  15.         cout<<"石頭!"<<endl;
  16.     else
  17.         cout<<"布!"<<endl;
  18.     cout<<"電腦出";
  19.     if(computer==1)
  20.         cout<<"剪刀!"<<endl;
  21.     else if(computer==2)
  22.         cout<<"石頭!"<<endl;
  23.     else
  24.         cout<<"布!"<<endl;
  25.     system("pause");
  26.     return 0;
  27. }
複製代碼

TOP

本帖最後由 陳宇柏 於 2019-11-12 17:34 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     srand(time(NULL));
  7.    int computer,player;
  8.    cout<<"請出拳(1)剪刀 (2)石頭 (3)布";
  9.    cin>>player;
  10.    computer=rand()%3+1;
  11.    cout<<"你出的是";
  12.    if(player==1)
  13.    {
  14.     cout<<"剪刀"<<endl;            
  15.    }
  16.     if(player==2)
  17.    {
  18.     cout<<"石頭"<<endl;            
  19.    }
  20.    
  21.     if(player==3)
  22.    {
  23.     cout<<"布"<<endl;            
  24.    }
  25.    
  26.    
  27.    cout<<"電腦出的是";
  28.    if(computer==1)
  29.    {
  30.     cout<<"剪刀"<<endl;            
  31.    }
  32.     if(computer==2)
  33.    {
  34.     cout<<"石頭"<<endl;            
  35.    }
  36.    
  37.     if(computer==3)
  38.    {
  39.     cout<<"布"<<endl;            
  40.    }
  41.     system ("pause");   
  42.     return 0;
  43. }   

  44.    
複製代碼

TOP

本帖最後由 蔡少宇 於 2019-11-12 19:54 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     srand(time(NULL));
  7.     int player,computer;
  8.     cout<<"<1>剪刀  <2>石頭  <3>布";
  9.     cout<<"請出拳:"
  10.     cin>>player;
  11.     computer=rand()%3+1;
  12.     cout<<"你出";
  13.     if(player==1)
  14.     {
  15.         cout<<"剪刀喔!!"<<endl;
  16.     }else if(player==2)
  17.     {
  18.         cout<<"石頭喔!!"<<endl;
  19.     }else if(player==3)
  20.     {
  21.         cout<<"布喔!!"<<endl;
  22.     }
  23.    
  24.      cout<<"電腦出";
  25.     if(computer==1)
  26.     {
  27.         cout<<"剪刀喔!!"<<endl;
  28.     }else if(computer==2)
  29.     {
  30.         cout<<"石頭喔!!"<<endl;
  31.     }else if(computer==3)
  32.     {
  33.         cout<<"布喔!!"<<endl;
  34.     }
  35.     system("pause");
  36.     return 0;
  37. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     re:
  8.     srand(time(NULL));
  9.     int computer,player;
  10.     cout<<"請出拳 <1>剪刀 <2>石頭 <3>布 :";
  11.     cin>>player;
  12.     cout<<"你出";
  13.     if(player==1)
  14.     {
  15.        cout<<"剪刀"<<endl;  
  16.     }else if(player==2)
  17.     {
  18.        cout<<"石頭"<<endl;   
  19.     }else if(player==3)
  20.     {
  21.        cout<<"布"<<endl;   
  22.     }else
  23.     {
  24.        cout<<"錯誤"<<endl;
  25.        goto re;
  26.     }
  27.     cout<<"電腦出";
  28.     if(computer==1)
  29.     {
  30.        cout<<"剪刀"<<endl;  
  31.     }else if(computer==2)
  32.     {
  33.        cout<<"石頭"<<endl;   
  34.     }else
  35.     {
  36.        cout<<"布"<<endl;   
  37.     }
  38.     system("pause");   
  39.     return 0;
  40. }
複製代碼
Jian-wei Wang

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     srand(time(NULL));
  7.     int a,b;
  8.     cout<<"請出拳 (1)剪刀 (2)石頭(3)布"<<endl;
  9.     cin>>a;
  10.     b=rand()%3+1;
  11.     cout<<"你出";
  12.     if(a==1)
  13.     cout<<"剪刀"<<endl;
  14.     if(a==2)
  15.     cout<<"石頭"<<endl;
  16.     if(a==3)
  17.     cout<<"布"<<endl;
  18.     cout<<"電腦出";
  19.      if(b==1)
  20.     cout<<"剪刀"<<endl;
  21.     if(b==2)
  22.     cout<<"石頭"<<endl;
  23.     if(b==3)
  24.     cout<<"布"<<endl;
  25.     system("pause");
  26.     return 0;
  27. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int you,cm;
  7.     string gt[3]={"剪刀","石頭","布"};
  8.     srand(time(NULL));
  9.     cout<<"請出拳! (1)剪刀  (2)石頭  (3)布   妳出: ";
  10.     cin>>you;
  11.     you--;
  12.     cm=rand()%3;
  13.     cout<<"你出"<<gt[you]<<endl;
  14.     cout<<"電腦出"<<gt[cm]<<endl;
  15.     system("pause");
  16.     return 0;
  17. }
複製代碼

TOP

返回列表