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

TOP

返回列表