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