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

TOP

返回列表