Board logo

標題: 猜拳遊戲 (一) [打印本頁]

作者: tonyh    時間: 2017-4-15 13:58     標題: 猜拳遊戲 (一)

本帖最後由 tonyh 於 2020-1-3 14:39 編輯

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

  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.     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. }
複製代碼

作者: 黃宥鈞    時間: 2017-4-15 14:10

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

作者: 許紘誌    時間: 2017-4-15 14:17

  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. }
複製代碼

作者: 譚暐霖    時間: 2017-4-15 14:22

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

作者: 洪榜蔓    時間: 2017-4-15 14:28

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

作者: 蔡幸融    時間: 2017-4-15 14:33

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

作者: 蔡幸融    時間: 2017-4-15 14:48

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

作者: 蕭澧邦    時間: 2017-4-21 18:06

  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.     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. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2