-
实现贪吃蛇游戏的源码,不是很理想,望别人能改进
实现贪吃蛇游戏的源码,不是很理想,望别人能改进-The realization of Snake game source code, not very ideal, hope someone else can improve
- 2022-05-20 17:47:23下载
- 积分:1
-
本程序实现了SVM分类的LIBSVM库。
This program implements SVM classification over libsvm library.
- 2022-11-25 22:25:04下载
- 积分:1
-
Biztalk开发演示,演示了如果在.Net环境进行Biztalk开发,国内Biztalk的资料少之又少,希望能为您提供帮助。...
Biztalk开发演示,演示了如果在.Net环境进行Biztalk开发,国内Biztalk的资料少之又少,希望能为您提供帮助。-Biztalk开发演示
- 2022-04-15 08:39:46下载
- 积分:1
-
Visual.Assist.v6.0.0 for vc6.0 一个很有用的编程助手
Visual.Assist.v6.0.0 for vc6.0 一个很有用的编程助手-Visual.Assist.v6.0.0 for vc6.0 a useful programming assistant
- 2023-08-13 04:00:05下载
- 积分:1
-
First, the problem Description: The number of polynomial input and stored in mem...
一、问题描述:将多个多项式输入并存储在内存中,然后对多项式进行加,减,乘等基本运算。
二、实行数据方法:用单链表来储存多项式,每个节点存储一项-First, the problem Description: The number of polynomial input and stored in memory, and then make additions to the polynomial, subtraction, multiplication and other basic computing. Second, the implementation of data Methods: Single-Linked List to store polynomials, each node storing a
- 2022-08-15 18:46:44下载
- 积分:1
-
支持简单HTML标记的Label控件,可以实现斜体,粗体,段落等效果。...
支持简单HTML标记的Label控件,可以实现斜体,粗体,段落等效果。-Support simple HTML tags Label control can be achieved italic, bold, paragraphs and other effects.
- 2022-11-30 06:10:03下载
- 积分:1
-
windows平台下利用FFMPEG实现的简易的音乐播放器,实现了暂停 播放功能
利用FFMPEG+sdl在windows平台下实现的win32程序,windows下的音乐播放器,实现了暂停,播放,结束能功能,程序简介易懂,很希望能与大家分享交流!
- 2022-03-23 22:35:15下载
- 积分:1
-
一个用堆栈做成的计算器,虽然小,但对学数据库的人来说锻炼一下也不错...
一个用堆栈做成的计算器,虽然小,但对学数据库的人来说锻炼一下也不错-Use made of a stack calculator, although small, but the database of people who look good exercise
- 2022-11-08 18:50:03下载
- 积分:1
-
如何用风险投资创建和删除环境。
How to create and delete environment by vc.
- 2022-01-25 15:01:35下载
- 积分:1
-
C语言实现贪吃蛇
//: Snake.c
/* * * * * * * * * * * * * * * * * * * * * * *
// Project: RedSnake(贪吃蛇)
// Author: Problue
// Version: 1.0
// Date: 19:55 2012-10-29
* * * * * * * * * * * * * * * * * * * * * * */
#include
#include
#include
#include "pcc32.h"
// 定义地图的尺寸及坐标
#define MAP_WIDTH 32 // 地图宽度
#define MAP_HEIGHT 32 // 地图高度
#define OFFSET_X 1 // 地图左右的边距
#define OFFSET_Y 1 // 地图上下的边距
#define TOTAL_WIDTH (MAP_WIDTH + OFFSET_X * 2) // 窗口宽度
#define TOTAL_HEIGHT (MAP_HEIGHT + OFFSET_Y * 2) // 窗口高度
#define GotoMap(x, y) gotoTextPos((x) * 2, (y))
// 定义地图方格的状态,分别为: 空格、蛇头、蛇身、蛇尾、食物
#define BS_SPACE 0
#define BS_SHEAD 1
#define BS_SBODY 2
#define BS_STAIL 3
#define BS_FOOD 4
// 蛇默认长度
#define SNAKE_MIN_LEN 5
// 定义蛇运动方向: 上、下、左、右
#define DIR_UP 1
#define DIR_DOWN 2
#define DIR_LEFT 3
- 2022-05-15 19:59:34下载
- 积分:1