21点游戏,提升c编程的项目实践

您所在的位置:网站首页 黑杰克21规则 21点游戏,提升c编程的项目实践

21点游戏,提升c编程的项目实践

2024-07-15 15:55:19| 来源: 网络整理| 查看: 265

21点又名黑杰克(Blackjack),起源于法国,已流传到世界各地,有着悠久的历史。现在在世界各地的赌场中都可以看到二十一点,随着互联网的发展,二十一点开始走向网络时代。该游戏由2到6个人玩,使用除大小王之外的52张牌,游戏者的目标是使手中的牌的点数之和不超过21点且尽量大。

https://baike.baidu.com/item/21%E7%82%B9/5481683?fr=aladdin

下面是根据21点游戏规则,利用c语言开发的小游戏。游戏本身多大意义,主要是可以作为一个提升c编程能力的小项目。

下面是部分源代码:

/* Filename:BLACKJACK.c Time:2018.03.24 Edit:Qin Introduction:This program plays a game of blackjack with you.The computer is the dealer and you are the victimer,I mean player.The dealer gets a card that you can see.The dealer than asks if you want another card by asking "Hit"or"Stand".If you choose hit ,the dealer gives you another card.If you choose to stand ,the dealer draws or stands, and the game is played out according to the cards you and the dealer have.As with real blackjack,the dealer stands on 17.The winner is announced only after both the player's and the dealer's hands are finished. */ //ANSI C standard header files appear next #include #include #include #include //Defined constants appear next #define BELL '\a' #define DEALER 0 #define PLAYER 1 /*Must keep two sets of totals for dealer and for player.The first set counts Aces as 1 and the second counts Aces as 11. Unlike "real world" blackjack,this program doesn't allow some Aces to be 1 while others Aces are 11 in the same hand. */ #define ACELOW 0 #define ACEHIGH 1 /*Only one global variable is used in this entire program.The variable holds 0, which means false initially.Once the user enter his or her name in initCardsScreen(), this variable is set to 1(for true), so the name is never asked for again the rest of the program. */ int askedForName=0; //False initially //This program's specific prototypes void dispTitle(void); void initCardsScreen(int cards[52],int playerPoints[2],int dealerPoints[2],int total[2],int *numCards); int dealCard(int *numCards,int cards[52]); void dispCard(int cardDrawn,int points[2]); void totalIt(int points[2],int total[2],int who); void dealerGetsCard(int *numCards,int cards[52],int dealerPoints[2]); void playerGetsCard(int *numCards,int cards[52],int playerPoints[2]); char getAns(char mesg[]); void findWinner(int total[2]); //main() function main() { int numCards; //Equals 52 at beginning of each game int cards[52],playerPoints[2],dealerPoints[2],total[2]; char ans; //For user's Hit/Stand or Yes/No response do{ initCardsScreen(cards,playerPoints,dealerPoints,total,&numCards); dealerGetsCard(&numCards,cards,dealerPoints); printf("\n"); playerGetsCard(&numCards,cards,playerPoints); do{ ans=getAns("Hit or stand (H/S)?"); if(ans=='H') { playerGetsCard(&numCards,cards,playerPoints); } } while(ans!='S'); totalIt(playerPoints,total,PLAYER); //Player's total do{ dealerGetsCard(&numCards,cards,dealerPoints); } while(dealerPoints[ACEHIGH]


【本文地址】

公司简介

联系我们

今日新闻


点击排行

实验室常用的仪器、试剂和
说到实验室常用到的东西,主要就分为仪器、试剂和耗
不用再找了,全球10大实验
01、赛默飞世尔科技(热电)Thermo Fisher Scientif
三代水柜的量产巅峰T-72坦
作者:寞寒最近,西边闹腾挺大,本来小寞以为忙完这
通风柜跟实验室通风系统有
说到通风柜跟实验室通风,不少人都纠结二者到底是不
集消毒杀菌、烘干收纳为一
厨房是家里细菌较多的地方,潮湿的环境、没有完全密
实验室设备之全钢实验台如
全钢实验台是实验室家具中较为重要的家具之一,很多

推荐新闻


图片新闻

实验室药品柜的特性有哪些
实验室药品柜是实验室家具的重要组成部分之一,主要
小学科学实验中有哪些教学
计算机 计算器 一般 打孔器 打气筒 仪器车 显微镜
实验室各种仪器原理动图讲
1.紫外分光光谱UV分析原理:吸收紫外光能量,引起分
高中化学常见仪器及实验装
1、可加热仪器:2、计量仪器:(1)仪器A的名称:量
微生物操作主要设备和器具
今天盘点一下微生物操作主要设备和器具,别嫌我啰嗦
浅谈通风柜使用基本常识
 众所周知,通风柜功能中最主要的就是排气功能。在

专题文章

    CopyRight 2018-2019 实验室设备网 版权所有 win10的实时保护怎么永久关闭