本文实例讲述了C++实现的打字母游戏。分享给大家供大家参考,具体如下:
// 打字母的游戏
// 编译代码请先安装 VC 绘图库(V20091123)
#include <graphics>
#include <conio>
#include <time>
// 欢迎界面
void welcome()
{
// 输出屏幕提示
cleardevice();
setcolor(YELLOW);
setfont(64, 0, 黑体);
outtextxy(200, 50, 打字游戏);
setcolor(WHITE);
setfont(16, 0, 宋体);