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

  33.     system("pause");
  34.     return 0;   

  35. }
複製代碼

TOP

返回列表