返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  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.    
  14.     if(b==1)
  15.         cout<<"A";
  16.     else if(b==11)
  17.         cout<<"J";
  18.     else if(b==12)
  19.         cout<<"Q";
  20.     else if(b==13)
  21.         cout<<"K";
  22.     else
  23.         cout<<b;
  24.     cout<<endl;      
  25.     system("pause");
  26.     goto re;   
  27.     return 0;   
  28. }
複製代碼

TOP

返回列表