Board logo

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

作者: 許婷芳    時間: 2020-7-30 20:56     標題: 猜拳遊戲 (二)

以陣列存放 "剪刀" "石頭" "布",改寫上一個程式。
  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. }
複製代碼

作者: 駱顗安    時間: 2020-7-30 21:10

此帖僅作者可見




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