-
License Options file and may replace Named Users for a Program. whether temporar...
License Options file and may replace Named Users for a
Program, whether temporarily or not, no more than four (4)
times per year, prov
file never exceeds the number licensed per Program.
Portions of the Programs may be installed on individual
computers to accelerate startup times, as long as the-License Options file and may replace Named Users for a Program. whether temporarily or not. no more than four (4) times per year. 577 file never exceeds the number licensed per Program. Portions of the Programs may be instal led on individual computers to accelerate star tup times, as long as the
- 2022-12-31 05:10:03下载
- 积分:1
-
使用GDI和GDI+绘图橡皮筋lines_src混合
Using GDI and GDI+ mixed drawing rubber band lines_src
- 2022-04-23 21:57:13下载
- 积分:1
-
通常使用TTS功能。
是和语音合成相关的常用函数的动态库,及一些文本分析函数。-functions often are used in TTS.
- 2022-05-29 12:37:29下载
- 积分:1
-
VB 编写的自动清理IE上网后留下的网页缓存源码
VB 编写的自动清理IE上网后留下的网页缓存源码 -VB prepared to remove the IE Internet pages cache left by source
- 2023-03-07 04:40:04下载
- 积分:1
-
高精度定时器,精度为毫秒,基于VC++开发的一个定时器,可用于高精度定时以及其他...
高精度定时器,精度为毫秒,基于VC++开发的一个定时器,可用于高精度定时以及其他-High-precision timer, an accuracy of milliseconds, based on the VC++ Developed a timer, can be used for high precision timing, as well as other
- 2022-05-10 21:19:13下载
- 积分:1
-
lrecog是一个神经网络的代码程序,帮助学习神经网络的朋友进行研究...
lrecog是一个神经网络的代码程序,帮助学习神经网络的朋友进行研究-lrecog is a neural network code procedures to help learning neural network research friend
- 2022-05-29 08:04:13下载
- 积分:1
-
Browser Helper Object example.
Self explanatory.
Browser Helper Object example.
Self explanatory.-Browser Helper Object example.
Self explanatory.
- 2022-02-14 00:39:24下载
- 积分:1
-
医院门诊信息系统 (PIS)
医院门诊信息系统是根据 SQL 服务器的基本临床患者信息数据 — — 数据基础是包括
它用来添加新的患者信息和搜索设施以获取文件快速......等
- 2022-03-21 18:37:00下载
- 积分:1
-
C++BUILDER的文件操作
C++BUILDER的文件操作-C BUILDER file manipulation
- 2023-06-15 09:00: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