/*
功能:实现扑克牌的发牌和存储以及显示牌型
*/
#include<stdio.h>
#include<stdlib.h>
#include<time.h>
#define N 54
#define M 17
/*
发牌程序:
花色有红桃,梅花,方块,黑桃
花点有:1,2,3,4,5,6,7,8,9,10,J,Q,K
另点数从1-54;
1 - 13 表示红桃
14 - 26 表示梅花
27 - 39 表示方块
40 - 52 表示黑桃
53 - 54 表示大小王 53 表示小王 54 表示大王
*/
int rand_time1(const void *a,const void *b)
{
srand(time(NULL));
return rand()%54-31;
}
int rand_time2(const void *a, const void *b)
{
return (rand() % 54 - 26);
}
int rand_time3(const void *a, const void *b)
{
srand(time(NULL));
return (rand() % 54 - 39);
}
int rand_time4(const void *a, const void *b)
{
return (rand() % 54 - 13);
}
void newline(int i)
{
if ((i + 1) % 7 == 0)
{
printf("\n");
}
}
void array_s(int * a, int *b, int *c, int *d,int *e)
{
int us1 = 0, us2 = 0, us3 = 0, re = 0;
for (int i = 0;i < N;i++)
{
if (i < (N - 3))
{
if ((i + 1) % 3 == 1)
{
b[us1] = a[i];
us1++;
}
if ((i + 1) % 3 == 2)
{
c[us2] = a[i];
us2++;
}
if ((i + 1) % 3 == 0)
{
d[us3] = a[i];
us3++;
}
}
else
{
e[re] = a[i];
re++;
}
}
}
void compare(int a)
{
int b = a % 13;
if (b > 0 && b < 11)
{
printf("%d\t",b);
}
else if (a % 13 == 0)
{
printf("K\t");
}
else if(a % 13 == 12)
{
printf("Q\t");
}
else
{
printf("J\t");
}
}
void show(int *a,int n)
{
for (int i = 0;i < n;i++)
{
if (a[i] > 0 && a[i] <= 13)
{
printf("红");
compare(a[i]);
newline(i);
}
else if (a[i] <= 26)
{
printf("梅");
compare(a[i]);
newline(i);
}
else if (a[i] <= 39)
{
printf("方");
compare(a[i]);
newline(i);
}
else if (a[i] <= 52)
{
printf("黑");
compare(a[i]);
newline(i);
}
else if (a[i] <= 53)
{
printf("小王\t");
newline(i);
}
else
{
printf("大王\t");
newline(i);
}
}
}
int main(int argc, char **argv)
{
int a[N];
for (int i = 0;i < N;i ++ )
{
a[i] = i+1;
}
qsort(a, N, sizeof(int), rand_time1);
qsort(a, N, sizeof(int), rand_time2);
qsort(a, N, sizeof(int), rand_time3);
qsort(a, N, sizeof(int), rand_time4);
int user1[M],user2[M],user3[M],rest[N-3*M];
array_s(a, user1, user2, user3, rest);
putchar(‘\n‘);
puts("玩家1:");
show(user1, M);
printf("\n\n\n");
puts("玩家2:");
show(user2, M);
printf("\n\n\n");
puts("玩家3:");
show(user3, M);
printf("\n\n\n");
puts("余牌:");
putchar(‘\n‘);
show(rest, N - 3 * M);
putchar(‘\n‘);
system("pause");
return 0;
}
欢迎大家提出意见和好的改进方法哈,自学中,望大家提点
版权声明:本文为博主原创文章,未经博主允许不得转载。