-
背单词的小程序,界面不错
背单词的小程序,界面不错-back word of small procedures, good interface
- 2022-05-08 22:41:44下载
- 积分:1
-
2410之ADC驱动解释 ARM92410系列
2410之ADC驱动解释 ARM92410系列-2410 to explain the ADC driver ARM92410 Series
- 2023-06-22 06:00:03下载
- 积分:1
-
输入年/月/日,计算得出该日的星期数
输入年/月/日,计算得出该日的星期数 -importation year/month/day, calculated the date of the few weeks
- 2022-10-18 05:30:02下载
- 积分:1
-
坦克游戏,平时大家都玩,大家一起学习学习!!!!
坦克游戏,平时大家都玩过的,大家一起研究学习-Tank game, usually we all played, we study together to learn! ! ! !
- 2022-08-25 23:45:32下载
- 积分:1
-
用 ddraw 编写的一个RPG游戏源码,资源文件太大没有上传。
用 ddraw 编写的一个RPG游戏源码,资源文件太大没有上传。-Written with an RPG game ddraw source code, resource files do not upload too much.
- 2022-03-05 01:32:00下载
- 积分:1
-
微软的早期Dos操作系统的完整源代码.让你一窥究竟.
微软的早期Dos操作系统的完整源代码.让你一窥究竟.-Microsoft"s early Dos integrity of the operating system source code. Let you peek at what.
- 2022-05-17 05:15:17下载
- 积分:1
-
A server port used to simulate the set of small programs, please instruct the ne...
一个用于模拟设置服务器端口的小程序,请大家指点下-A server port used to simulate the set of small programs, please instruct the next
- 2023-03-27 03:45:03下载
- 积分:1
-
通讯录管理程序
通讯录管理程序-Address books management program
- 2022-01-26 00:17:02下载
- 积分:1
-
OCR 程序 可以将图像转化成文字 非常有用,用了都说好
OCR 程序 可以将图像转化成文字 非常有用,用了都说好-OCR programs can transform the image into text very useful, that spent a good
- 2022-01-31 20:11:14下载
- 积分: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