• 大小: 8.06M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-01-29
  • 语言: C/C++
  • 标签: 贪吃蛇  

资源简介

使用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个文件信息

评论

共有 条评论