-
一个不错的小迷宫算法
一个不错的小迷宫算法-a good small maze algorithm
- 2022-03-09 14:10:24下载
- 积分:1
-
13123123
西门子TC35短信模块开打算打算 发资料-13123123
- 2022-12-10 12:20:03下载
- 积分:1
-
这是我写的一个关于国家的国旗与国歌的小软件,点击国旗可以播放国歌,显示国家名称等基本资料。还有一个小游戏,根据国名选择该国的国旗。这个小软件还有很多不足之处,请...
这是我写的一个关于国家的国旗与国歌的小软件,点击国旗可以播放国歌,显示国家名称等基本资料。还有一个小游戏,根据国名选择该国的国旗。这个小软件还有很多不足之处,请大家指点,谢谢!-This is the one I wrote on the country"s national flag and national anthem of the small software, click on the national flag can play the national anthem, showing names of countries such basic information. There is also a small game, according to choose the name of the country"s flag. The small software There are many shortcomings, pointing out please, thank you!
- 2022-01-26 05:05:31下载
- 积分:1
-
一个利用VB编写的FTP客户端程序,学习网络编程的朋友可以学习下....
一个利用VB编写的FTP客户端程序,学习网络编程的朋友可以学习下.-VB prepared using an FTP client program, learning to learn network programming under a friend.
- 2022-04-15 18:22:37下载
- 积分:1
-
IE 的bho 可以对基于IE6的关键字过滤和加亮。
IE 的bho 可以对基于IE6的关键字过滤和加亮。-IE can bho of the keyword-based filtering and processing IE6 light.
- 2022-03-13 17:59:18下载
- 积分:1
-
understanding AOP.rar
了解AOP.rar-understanding AOP.rar
- 2023-08-14 02:55:03下载
- 积分:1
-
在Windows Mobile手机操作系统下,实现串口通信功能。
在Windows Mobile手机操作系统下,实现串口通信功能。-In Windows Mobile phone operating system, realize the serial communication function.
- 2023-03-26 23:05:03下载
- 积分:1
-
这份年代比较久远了,02年的东西.是用borland c++ builder写的一个gui的程序.基本上03年之后我都只用vc了....
这份年代比较久远了,02年的东西.是用borland c++ builder写的一个gui的程序.基本上03年之后我都只用vc了.
-This era in the more distant, and in 2002 things. Is borland c++ Builder to write a gui procedures. Basically, in 2003 only after I used the vc.
- 2022-02-03 07:45:00下载
- 积分: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
-
一个Form设计器的源代码 现上传供网友及初学者学习研究之用
一个Form设计器的源代码 现上传供网友及初学者学习研究之用-A Form Designer is upload the source code for users and beginners to learn research
- 2022-02-05 05:34:48下载
- 积分:1