返回列表 發帖

猜拳遊戲 (二)

以陣列存放 "剪刀" "石頭" "布",改寫上一個程式。
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     srand(time(NULL));
  7.     int player,computer;
  8.     string n[]={"剪刀","石頭","布"};
  9.     cout<<"請出拳! (1)剪刀(2)石頭(3)布 ";
  10.     cin>>player;
  11.     computer=rand()%3+1;   //1~3
  12.     cout<<"你出"<<n[player-1]<<endl;
  13.     cout<<"電腦出"<<n[computer-1]<<endl;
  14.     system("pause");   
  15.     return 0;
  16. }
複製代碼

本帖最後由 黃子倢 於 2021-1-16 20:43 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     int player, computer;
  8.     srand(time(NULL));
  9.     string n[]={"剪刀","石頭","布"};
  10.     re:
  11.     cout<<"請出拳: (1)剪刀(2)石頭(3)布"<<endl;
  12.     cin>>player;
  13.     computer=rand()%3+1;
  14.     cout<<"你出"<<n[player-1]<<"!"<<endl;  
  15.     cout<<"電腦"<<n[computer-1]<<"!"<<endl;
  16.     goto re;
  17.     system("pause");   
  18.     return 0;
  19. }
複製代碼

TOP

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

TOP

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

TOP

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

TOP

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

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 player,computer;
  10.     string n[]={"剪刀","石頭","布"};
  11.     cout<<"請出拳! (1)剪刀(2)石頭(3)布 ";
  12.     cin>>player;
  13.     computer=rand()%3+1;
  14.     cout<<"你出"<<n[player-1]<<endl;
  15.     cout<<"對手出"<<n[computer-1]<<endl;
  16.     goto re;
  17.     system("pause");
  18.     return 0;   
  19. }
複製代碼

TOP

本帖最後由 呂尚霖 於 2021-1-23 20:02 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     srand(time(NULL));
  7.     int player,computer;
  8.     string n[]={"剪刀","石頭","布"};
  9.     cout<<"請出拳! (1)剪刀(2)石頭(3)布 ";
  10.     cin>>player;
  11.     computer=rand()%3+1;   
  12.     cout<<"你出"<<n[player-1]<<endl;
  13.     cout<<"電腦出"<<n[computer-1]<<endl;
  14.     system("pause");   
  15.     return 0;
  16. }
複製代碼

TOP

返回列表