發牌洗牌我都寫好了,作業還要求
發了五張牌然後判斷以下這幾種
然後利用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 可以看到全部內容