返回列表 發帖

猜拳遊戲(一)之1

文字訊息如下: "請出拳! (1)剪刀 (2)石頭 (3)布  "
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊
May

本帖最後由 林祐霆 於 2020-1-17 20:02 編輯
  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a;
  7.     cout<<"出拳吧!!!  (1)剪刀(2)石頭(3)布 ";
  8.     cin>>a;
  9.     cout<<"你出"<<a<<endl;
  10.     system("pause");
  11.     return 0;
  12. }
複製代碼
林祐霆

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;

  4. int main()
  5. {
  6.         int player;
  7.         cout<<"請出拳! (1)剪刀(2)石頭(3)布";
  8.         cin>>player;
  9.         cout<<"你出"<<player<<endl;
  10.         system("pause");
  11.         return 0;
  12. }
複製代碼

TOP

本帖最後由 謝以恩 於 2020-1-17 19:58 編輯

#include<iostream>
#include<cstdlib>
using namespace std;

int main()
{
        int player;
        cout<<"請出全:1 剪刀 2 石頭 3 布";
        cin>>player;
        cout<<"你出"<<player<<endl;
        system("pause");
        return 0;        
}

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int player;
  7.     cout<<"請出拳!(1)剪刀(2)石頭(3)布  ";
  8.     cin>>player;
  9.     cout<<"你出"<<player<<endl;
  10.    system("pause");
  11.    return 0;
  12. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;

  4. int main()
  5. {
  6.    srand(time(NULL));
  7.    int player;
  8.    cout<<"請出拳! (1)剪刀(2)石頭 (3)布";
  9.    cin>>player;
  10.    cout<<"你出"<<player<<endl;
  11.         system("pause");
  12.         return 0;        
  13. }
複製代碼

TOP

本帖最後由 洪承廷 於 2020-1-17 20:02 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;

  4. int main()
  5. {
  6.    int player;
  7.    cout<<"請出拳! (1)剪刀(2)石頭(3)布";
  8.    cin>>player;
  9.    cout<<"你出"<<player<<endl;
  10.    system("pause");
  11.    return 0;        
  12. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;

  4. int main()
  5. {
  6.         int a;
  7.         cout<<"請出拳! (1)剪刀(2)石頭(3)布 ";
  8.         cin>>a;
  9.         cout<<"你出"<<a<<endl;
  10.         system("pause");
  11.         return 0;        
  12. }
複製代碼

TOP

返回列表