- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int a,b;
- srand(time(NULL));
- re:
- a=rand()%4+3;
- b=rand()%13+1;
- if(a==1)
- cout<<char(a)<<"A"<<endl;
- if(a>1 && a<11)
- cout<<char(a)<<b<<endl;
- if(a==11)
- cout<<char(a)<<"J"<<endl;
- if(a==12)
- cout<<char(a)<<"Q"<<endl;
- if(a==13)
- cout<<char(a)<<"K"<<endl;
- system("pause");
- goto re;
- system("pause");
- return 0;
- }
複製代碼 |