溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

C語言實現(xiàn)的簡易撲克牌游戲代碼分享

發(fā)布時間:2021-08-27 18:07:52 來源:億速云 閱讀:332 作者:chen 欄目:編程語言

本篇內(nèi)容主要講解“C語言實現(xiàn)的簡易撲克牌游戲代碼分享”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學(xué)習“C語言實現(xiàn)的簡易撲克牌游戲代碼分享”吧!

將一副撲克牌平均分成兩份,每人拿一份。a先拿出手中的第一張撲克牌放在桌上,然后b也拿出手中的第一張撲克牌,并放在a剛打出的撲克牌的上面,就像這樣兩人交替出牌。出牌時,如果某人打出的牌與桌上某張牌的牌面相同,即可將兩張相同的牌及其中間所夾的牌全部取走,并依次放到自己手中牌的末尾。當任意一人手中的牌全部出完時,游戲結(jié)束,對手獲勝。

以下是代碼的實現(xiàn):

#define _crt_secure_no_deprecate#include<stdio.h>#include<stdlib.h> struct queue//定義隊列的結(jié)構(gòu)體{ int data[1000]; int head; int tail;};struct stack//定義棧的結(jié)構(gòu)體{ int data[10]; int top;}; void poker(){ struct queue q1; struct queue q2; struct stack s; int arr[10]; int i, t; q1.head = 1; q1.tail = 1; q2.head = 1; q2.tail = 1; s.top = 0; for (i = 1; i <= 9; i++) { arr[i] = 0;//對數(shù)組進行初始化,全部為0 }  for (i = 1; i <= 6; i++) { scanf("%d", &q1.data[q1.tail]); q1.tail++; } for (i = 1; i <= 6; i++) { scanf("%d", &q2.data[q2.tail]); q2.tail++; }  while (q1.head < q1.tail&&q2.head < q2.tail) { t = q1.data[q1.head]; if (arr[t] == 0) { q1.head++; s.top++; s.data[s.top] = t; arr[t] = 1; } else { q1.head++; q1.data[q1.tail] = t; q1.tail++; while (s.data[s.top] != t) { arr[s.data[s.top]] = 0; q1.data[q1.tail] = s.data[s.top]; q1.tail++; s.top--; } } t = q2.data[q2.head];  if (arr[t] == 0) { q2.head++; s.top++; s.data[s.top] = t; arr[t] = 1; } else { q2.head++; q2.data[q2.tail] = t; q2.tail++; while (s.data[s.top] != t) { arr[s.data[s.top]] = 0; q2.data[q2.tail] = s.data[s.top]; q2.tail++; s.top--; } } } if (q2.head == q2.tail) { printf("a贏\n"); printf("a當前手中的牌是:"); for (i = q1.head; i <= q1.tail - 1; i++) { printf(" %d", q1.data[i]); } if (s.top > 0) { printf("\n桌上的牌是:"); for (i = 1; i <= s.top; i++) { printf(" %d", s.data[i]); } printf("\n"); } else { printf("\n桌上已經(jīng)沒有牌了"); } } else { printf("b贏\n"); printf("b當前手中的牌是:"); for (i = q2.head; i <= q2.tail - 1; i++) { printf(" %d", q2.data[i]); } if (s.top > 0) { printf("\n桌上的牌是:"); for (i = 1; i <= s.top; i++) { printf(" %d", s.data[i]); } printf("\n"); } else { printf("\n桌上已經(jīng)沒有牌了"); } }}int main(){ poker(); system("pause"); return 0;}

到此,相信大家對“C語言實現(xiàn)的簡易撲克牌游戲代碼分享”有了更深的了解,不妨來實際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進入相關(guān)頻道進行查詢,關(guān)注我們,繼續(xù)學(xué)習!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI