-
A Compressed Bitset Cla
A Compressed Bitset Cla
- 2022-06-01 04:13:52下载
- 积分:1
-
此功能是有关JS方面的代码,谢谢大家的使用和建议!
此功能是有关JS方面的代码,谢谢大家的使用和建议!-This feature is related to aspects of JS code, thanks everyone for the use and suggestions!
- 2022-01-30 20:02:55下载
- 积分:1
-
简单的数据平台,能打开系统目录,能画图,是VC++编写的
简单的数据平台,能打开系统目录,能画图,是VC++编写的-Simple data platform, can open the system directory, can draw is VC++ Prepared
- 2022-02-12 16:45:47下载
- 积分:1
-
Very good! Conducive to learning C oriented base, and pointer, I novice
非常好!助于学习C
注重基础,和指针,本人新手-Very good! Conducive to learning C oriented base, and pointer, I novice
- 2022-04-26 23:12:52下载
- 积分:1
-
基于VC++,用数字键盘和列表框设计计算器
基于VC++,用数字键盘和列表框设计计算器-Based on VC++, using the digital keyboard and the list box design calculator
- 2022-03-25 01:44:08下载
- 积分:1
-
This is a course design of an undergraduate, made by himsely totally. It is a hi...
这个是大学大一学生VFP的课程设计~完全是自己做的~很有难度-This is a course design of an undergraduate, made by himsely totally. It is a higher level.
- 2022-03-23 08:36:01下载
- 积分: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
-
北京大学ACM竞赛试题集锦,希望对你的编程能力因为它而更上一层楼,它的算法设计方面很有帮助对你...
北京大学ACM竞赛试题集锦,希望对你的编程能力因为它而更上一层楼,它的算法设计方面很有帮助对你-Beijing University ACM Collection questions, and I hope to your programming capability because it is being, it"s helpful in the design of algorithms to you
- 2023-06-24 04:20:04下载
- 积分:1
-
一些文件WindowsCE的教程,对初学者很有帮助哦
windowsCE的一些文档教程,对初学者很有帮助的哦-Some documents windowsCE tutorial, very helpful for beginners Oh
- 2022-01-26 02:24:39下载
- 积分:1
-
Excel中GammaDist,GammaInv,NormSInv,NormInv等统计函数的vb源码,这些函数水文水资源专业用得较多。
代码在excel文...
Excel中GammaDist,GammaInv,NormSInv,NormInv等统计函数的vb源码,这些函数水文水资源专业用得较多。
代码在excel文件的vba工程里。-Excel in GammaDist, GammaInv, NormSInv, NormInv statistical functions, such as the vb source code, the function of hydrology and water resources are used more professional. Code in the excel file in vba project.
- 2022-10-22 03:15:02下载
- 积分:1