老師要求的程式作業:
1.玩家a,玩家b各發5張牌
2.發牌必須為亂數發牌
3.玩家b的牌一定要有一對(但也是亂數),玩家a不一定
4.程式要能判斷是否出現一對
不知道這樣問題是否交待得夠清楚
我有參考版上幾位前輩所寫的相關程式
可是現在碰到了兩個問題:
1.complier有過,可是無法run
2.感覺程式東湊西湊,我也不知道跑出來會變怎樣,因為我看不到結果阿......
以下是程式碼,請各位高手指點一下,謝謝
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#define total 52
int pokerrandom(int [],int max); /*determine which poker can get*/
int result();
int main(void)
{
int poker;
int i, j, tmp, out,a=13,P=0,e=0;
for(i = 1; i <= total; i++) /*define the array*/
poker = i;
srand(time(0));
for(i = 1; i <= total; i++) /*give the ..
訪客只能看到部份內容,免費 加入會員 或由臉書 Google 可以看到全部內容