资源简介
blackjack经典21点小游戏,源码绝对可用,适合课程设计噢
代码片段和文件信息
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
///////////////// RULES: //////////////////////////////////////////////////////////////
/////////////////
///////////////// Deal players and the dealer two initial cards //////////////////////////////////////
///////////////// Hide the dealer‘s first card /////////////////////////////////////
///////////////// Deal additional cards to players //////////////////////////////////////
///////////////// Reveal dealer‘s first card /////////////////////////////////////
///////////////// Deal additional cards to dealer //////////////////////////////////////
///////////////// If dealer is busted //////////////////////////////////////
///////////////// Everyone who is not busted wins ////////////////////////////////////
///////////////// Otherwise //////////////////////////////////////
///////////////// For each player ////////////////////////////////////
///////////////// If player isn‘t busted ///////////////////////////////////
///////////////// If player‘s total is greater than the dealer‘s total /////////////////////////////////
///////////////// Player wins ////////////////////////////////
///////////////// Otherwise if player‘s total is less than dealer‘s total ////////////////////////////////
///////////////// Player loses ///////////////////////////////
///////////////// Otherwise ////////////////////////////////
///////////////// Player pushes //////////////////////////////
///////////////// Remove everyone‘s cards /////////////////////////////////////
//#include “stdafx.h“
#include
#include
#include
#include “carddefs.h“
using namespace std;
//Define the class of card
class card {
public:
char abbr[4];
int name; //card‘s name
int suit; //card‘s suit
} the_card;
void deal_player(); //deal the cards to player
void deal_dealer(); //deal the cards to dealer
void deal(); //deal the cards
void doDealer(); //dealer‘s operation
void erase_hands(); //reset the cards in tw
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 79872 2008-07-13 13:38 blackjack可用\result.doc
文件 11036 2008-07-21 22:16 blackjack可用\Blackjack.cpp
文件 290 2008-07-13 03:42 blackjack可用\carddefs.h
文件 359 2008-07-13 03:44 blackjack可用\cards.txt
文件 3437 2009-06-29 23:53 blackjack可用\Blackjack.dsp
文件 74752 2009-07-02 14:25 blackjack可用\Debug\vc60.idb
文件 110592 2009-06-29 23:53 blackjack可用\Debug\vc60.pdb
文件 2024760 2009-06-29 23:53 blackjack可用\Debug\Blackjack.pch
文件 201348 2009-06-29 23:53 blackjack可用\Debug\Blackjack.obj
文件 791880 2009-06-29 23:53 blackjack可用\Debug\Blackjack.ilk
文件 544833 2009-06-29 23:53 blackjack可用\Debug\Blackjack.exe
文件 1106944 2009-06-29 23:53 blackjack可用\Debug\Blackjack.pdb
文件 41984 2009-07-02 14:26 blackjack可用\Blackjack.ncb
文件 252 2009-07-02 14:25 blackjack可用\Blackjack.plg
文件 543 2009-07-02 14:25 blackjack可用\Blackjack.dsw
文件 48640 2009-07-02 14:26 blackjack可用\Blackjack.opt
目录 0 2009-06-29 23:53 blackjack可用\Debug
目录 0 2009-06-29 23:53 blackjack可用
----------- --------- ---------- ----- ----
5041522 18
相关资源
- 多用户多级目录文件系统c++源码(含
- libstdc++.so.6.0.22 or GLIBCXX_3.4.22 in tenso
- 东北大学课程设计—编译原理课程设
- visual c++ 6.0 完整扫雷源代码
- 数据结构算法与应用 c++语言描述(第
- c++之sha1类
- 信息学奥赛NOIP系列课程之C++部分课程
- VC++ 实现将本地文件通过HTTP上传到网
- PCA融合算法C++代码
- c++版遗传算法基本算法
- VC++采用内存映射方式高效率读写大数
- 页面置换算法OPT、FIFO、LRU实现--C++版
- 分支限界法求圆排列问题
- http 协议解析类 c++
- 用C++语言写的完整的人脸识别程序源
-
mfc通过xm
l文件生成word文档 - 哈夫曼最小生成树及最短路径代码
- C++写的多级反馈队列代码
- c++读取ini文件封装类
- ECC加密 RSA加密 C++ 简单实现 不带大数
- c++实现的录音程序源代码(录mp3、x
- 校园导航系统 c++做的 !
- 值得你看的C++27个趣味程序
- c++学生选课系统代码
- C++五子棋源代码程序解析
- 操作系统课程设计之进程调度源代码
- 《C语言课程设计》 学生成绩管理系统
- c++学生考勤管理系统
- C++病毒开发开发源代码+2小时教学视频
- C++实现内存修改器+1G视频教程百度云
评论
共有 条评论