-
file attributes file attributes
文件属性 -file attributes file attributes
- 2022-12-15 21:45:03下载
- 积分:1
-
VC++扩展编程使你对VC++编程有更全面的认识和深入
VC++扩展编程使你对VC++编程有更全面的认识和深入-It help your understand the VC++ programming more comprehensively.
- 2023-04-18 08:20:03下载
- 积分: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
-
一个万能算法函数,能够对任意的两种数据类型
一个万能算法函数,能够对任意的两种数据类型-A universal algorithm function, capable of two arbitrary data type
- 2022-08-06 13:32:06下载
- 积分:1
-
C Primer超过5。详细说明:
C Primer Plus 5th . rar-C Primer Plus 5th. Rar
- 2022-06-19 17:54:24下载
- 积分:1
-
03商场进货渠道管理
03商场进货渠道管理 -Purchase 03 shopping malls Channel Management
- 2022-01-25 19:51:06下载
- 积分:1
-
车上的收音机项目汽车无线电工程。
car radio project car ra dio project.
- 2022-02-20 00:11:47下载
- 积分:1
-
简单的UDP打洞程序
简单的Windows UDP打洞程序,包含服务器端程序和客户端程序,在Visual C++ 2008上编译通过。
- 2022-07-26 08:49:07下载
- 积分:1
-
基于贝叶斯技术的邮件过滤的编程实现,SQL Sever 2000中的邮件邮件数据库...
基于贝叶斯技术的邮件过滤的编程实现,SQL Sever 2000中的邮件邮件数据库-E-mail based on Bayesian filtering technology, programming
- 2022-04-28 18:51:55下载
- 积分:1
-
I wrote an integrator, when the competition could have been written to the schoo...
我写一个积分器,比赛时候用的,本来是给学校写的,结果他们没用,郁闷吧-I wrote an integrator, when the competition could have been written to the school, their useless, it depressed
- 2023-06-23 13:35:04下载
- 积分:1