返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;
  5. int main()
  6. {
  7.     int a,b;
  8.     re:
  9.         system("cls");
  10.     srand(time(NULL));  
  11.     a=rand()%4+3;
  12.     b=rand()%13+1;
  13.              cout<<char(a);
  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.          
  25.         cout<<endl;

  26.     system("pause");
  27.     goto re;
  28.     return 0;
  29. }
複製代碼

TOP

返回列表