这是我的第一个C++程序,提出建议哦!
#include<iostream.h>
struct
{
int hua;
int shu;
}poker[4][13];
int main()
{
int i,j,k;
int a[4]={3,4,5,6};
int b[13]={2,3,4,5,6,7,8,9,10,74,81,75,65};
for(i=0;i<4;i++)
{
poker[i][13].hua=a[i];
cout<<"\n";
for(k=0;k<13;k++)
{
if(k<9)
{
poker[4][k].shu=b[k];
cout<<(char)poker[i][13].hua<< poker[4][k].shu;
}
if(k>=9)
{
poker[4][k].shu=b[k];
cout<<(char)poker[i][13].hua<<(char)poker[4][k].shu;
}
}
}
return 0;
}