资源简介
使用Visual C 6.0打开项目并运行
(1)将“光盘\Code\03”文件夹中的Project文件夹拷贝到本地硬盘上,并去掉文件夹的只读属性。
(2)双击“贪吃蛇.dsw”文件,使用Visual C 6.0打开项目。
(3)以Visual C 6.0打开程序后,单击按钮后快捷键<F5 Ctrl>,即可运行程序,如图1所示。
/*** 初始化蛇身,画蛇身
*/
void initsnake()
{
snake *tail;
int i;
tail=(snake*)malloc(sizeof(snake)); //从蛇尾开始,头插法,以x,y设定开始的位置//
tail->x=24; //蛇的初始位置(24,5)
tail->y=5;
tail->next=NULL;
for(i=1;i<=4;i ) //设置蛇身,长度为5
{
head=(snake*)malloc(sizeof(snake)); //初始化蛇头
head->next=tail; //蛇头的下一位为蛇尾
head->x=24 2*i; //设置蛇头位置
head->y=5;
tail=head; //蛇头变成蛇尾,然后重复循环
}
while(tail!=NULL) //从头到尾,输出蛇身
{
gotoxy(tail->x,tail->y);
color(14);
printf("★"); //输出蛇身,蛇身使用★组成
tail=tail->next; //蛇头输出完毕,输出蛇头的下一位,一直输出到蛇尾
}
}
代码片段和文件信息
// stdafx.cpp : source file that includes just the standard includes
// 贪吃蛇.pch will be the pre-compiled header
// stdafx.obj will contain the pre-compiled type information
#include “stdafx.h“
// TODO: reference any additional headers you need in STDAFX.H
// and not in this file
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2019-03-19 19:01 16\
目录 0 2017-08-21 20:01 16\Bits\
文件 307 2017-05-10 09:41 16\Bits\01.txt
文件 124 2017-05-10 09:41 16\Bits\02.txt
文件 541 2017-05-10 09:41 16\Bits\03.txt
文件 859 2017-05-11 08:59 16\Bits\04.txt
文件 149 2017-05-10 09:41 16\Bits\05.txt
文件 163 2017-05-10 09:41 16\Bits\06.txt
文件 1526 2017-05-10 09:41 16\Bits\07.txt
文件 151 2017-05-10 09:41 16\Bits\08.txt
文件 1323 2017-05-11 08:59 16\Bits\09.txt
文件 515 2017-05-10 09:41 16\Bits\10.txt
文件 859 2017-05-11 08:59 16\Bits\11.txt
文件 239 2017-05-10 09:41 16\Bits\12.txt
文件 843 2017-05-10 09:41 16\Bits\13.txt
文件 840 2017-05-11 08:59 16\Bits\14.txt
文件 443 2017-05-11 08:59 16\Bits\15.txt
文件 209 2017-05-10 09:41 16\Bits\16.txt
文件 217 2017-05-11 08:59 16\Bits\17.txt
文件 285 2017-05-10 09:41 16\Bits\18.txt
文件 4668 2017-05-11 08:59 16\Bits\19.txt
文件 1691 2017-05-11 08:59 16\Bits\20.txt
文件 1235 2017-05-11 08:59 16\Bits\21.txt
文件 998 2017-05-11 08:59 16\Bits\22.txt
文件 251 2017-05-10 09:41 16\Bits\23.txt
文件 810 2017-05-10 09:41 16\Bits\24.txt
文件 902 2017-05-11 08:59 16\Bits\25.txt
目录 0 2017-08-21 20:01 16\Module\
目录 0 2017-08-21 20:01 16\Module\001\
目录 0 2017-08-21 20:01 16\Module\001\Debug\
文件 3 2017-05-11 15:28 16\Module\001\Debug\save.txt
............此处省略165个文件信息
- 上一篇:c++ 俄罗斯方块 游戏源码
- 下一篇:c++ 五子棋小游戏源码
相关资源
- 贪吃蛇(使用easyX实现)
- 简易贪吃蛇 易扩展
- 贪吃蛇mfc版
- 分享vc++ 游戏开发经典案例详解王浩编
- c语言+贪吃蛇+实验报告+ppt
- 贪吃蛇C语言程序源代码原创
- C++经典贪吃蛇项目
- C++版贪吃蛇游戏源代码
- EGE版贪吃蛇
- mfc写的贪吃蛇小游戏
- C++ OOP实现贪吃蛇,EASYX图形界面
- c语言实验贪吃蛇游戏大作业和实验报
- turbo C下的扫雷,五子棋,贪吃蛇
- win32窗体贪吃蛇c++代码
- 基于C语言实现的贪吃蛇
- C语言+SDLlinux贪吃蛇游戏)
- C语言贪吃蛇小游戏
- 贪吃蛇C++ graphics.h
- C语言综合 里面含有八皇后问题,蓝
- c++贪吃蛇小游戏
- c语言贪吃蛇游戏双人对战版源码
- 贪吃蛇 C语言程序
- mfc 贪吃蛇游戏 MFC实现贪吃蛇小游戏
- MFC 贪吃蛇
- 毕业设计 c语言 贪吃蛇游戏的编制
- 贪吃蛇 小游戏 代码C++编写,面向对象
- 数据结构大作业贪吃蛇和实验报告
- C语言编写的控制台版贪吃蛇共200行
- Linux下纯C语言 多线程 人机 贪吃蛇
- c++编的mfc 贪吃蛇游戏
评论
共有 条评论