返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<string>
  4. using namespace std;
  5. int main()
  6. {
  7.     srand(time(NULL));
  8.     re:
  9.     system("cls");
  10.     int a=rand()%4+3;
  11.     int b=rand()%13+1;
  12.     cout<<"您抽到的牌是: "<<char(a);
  13.     if(b==1)
  14.     {
  15.         cout<<"A";
  16.     }   
  17.     else if(b==11)
  18.     {
  19.         cout<<"J";
  20.     }
  21.     else if(b==12)
  22.     {
  23.         cout<<"Q";
  24.     }
  25.     else if(b==13)
  26.     {
  27.         cout<<"K";
  28.     }
  29.     else
  30.     {
  31.         cout<<b;
  32.     }
  33.     cout<<endl;      
  34.     system("pause");
  35.     goto re;   
  36.     return 0;   
  37. }
複製代碼

TOP

返回列表