返回列表 發帖
  1. #include <iostream>
  2. #include <cstdlib>
  3. #include <ctime>

  4. using namespace std;
  5. int main()
  6. {
  7.         int a, b;
  8.         srand(time(NULL));
  9.         START:
  10.         system("cls");       
  11.         for(int i = 0; i < 1; i++)
  12.         {
  13.                 a = rand() % 4 + 3;
  14.         }
  15.         for(int i = 0; i < 1; i++)
  16.         {
  17.                 b = rand() % 12 + 1;
  18.         }       
  19.         cout << "你所抽到的牌是:";
  20.         cout << char(a);
  21.         if (b == 1)
  22.         {
  23.                 cout << "A" << endl;
  24.         }
  25.         else if (b == 11)
  26.         {
  27.                 cout << "J" << endl;
  28.         }
  29.         else if (b == 12)
  30.         {
  31.                 cout << "Q" << endl;
  32.         }
  33.         else if (b == 13)
  34.         {
  35.                 cout << "K" << endl;
  36.         }
  37.         else
  38.         {
  39.                 cout << b << endl;
  40.         }
  41.     system("pause");
  42.         goto START;
  43.     return 0;
  44. }
複製代碼

TOP

返回列表