发牌洗牌我都写好了,作业还要求
发了五张牌然后判断以下这几种
然后利用PRINTF 判断出她是哪一种 或者什么都没有
1.顺子
2.葫芦
3.对子
4.同花顺
一点头绪也没有 希望大大能帮忙
/* Fig. 10.3: fig10_03.c
The card shuffling and dealing program using structures */
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
/* card structure definition */
struct card {
const char *face; /* define pointer face */
char suit; /* define pointer suit */
}; /* end structure card */
typedef struct card Card; /* new type name for struct card */
/* prototypes */
void fillDeck( Card * const wDeck, const char * wFace[],
const char * wSuit[] );
void shuffle( Card * const wDeck );
void deal( const Card * const wDeck );
int main( void )
{
Card deck[ 52 ]; /* define array of Cards */
/* initialize array of pointers */
const char *face[] = { " ..
访客只能看到部份内容,免费 加入会员 或由脸书 Google 可以看到全部内容