返回列表 發帖
  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,b;
  10.     a=rand()%4+3;
  11.     b=rand()%13+1;   
  12.     cout<<"您所抽到的牌是: ";
  13.     cout<<char(a);
  14.     if(b==1)
  15.         cout<<"A"<<endl;
  16.     else if(b==11)
  17.         cout<<"J"<<endl;
  18.     else if(b==12)
  19.         cout<<"Q"<<endl;
  20.     else if(b==13)
  21.         cout<<"K"<<endl;
  22.     else
  23.         cout<<b<<endl;      
  24.     system("pause");
  25.     goto re;   
  26.     return 0;   
  27. }
複製代碼

TOP

返回列表