-
演示vb6怎样读写纯文本的程序
演示vb6怎样读写纯文本的程序-demonstrate VB6 how to read and write plain text procedures
- 2022-02-06 05:05:12下载
- 积分:1
-
tourboc2.0伤害可以在日历的实现!在一个非常有限的算法。
一个可以在TourBoC2.0伤可以实现的万年历!里面的算法相当经典!-TourBoC2.0 an injury can be achieved in the calendar! Algorithm inside a very classic!
- 2023-06-09 13:50:03下载
- 积分:1
-
一个模拟骰子的小系统. 虽然简单,但是覆盖知识面很全的喔
一个模拟骰子的小系统. 虽然简单,但是覆盖知识面很全的喔-dice simulation of a small system. Although simple, but full coverage is the knowledge oh
- 2022-04-29 20:10:47下载
- 积分:1
-
javascript实现的一个工作流图形编辑器,还需完善
javascript实现的一个工作流图形编辑器,还需完善-javascript realize a graphical workflow editor, needs to be perfect
- 2022-02-21 02:30:22下载
- 积分:1
-
小画板程序,模拟windows下的小画板程序
小画板程序,模拟windows下的小画板程序-paintboard
- 2022-03-06 04:26:44下载
- 积分:1
-
a pretty practical procedures for the website, web site development and do not k...
一个蛮实用的网站程序,对于网站开发不是很了解,一起讨论讨论.-a pretty practical procedures for the website, web site development and do not know much about, and discuss discussions.
- 2022-07-11 15:12:25下载
- 积分: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
-
获取鼠标在任意点上的位置
获取鼠标在任意点上的位置-access to any point in the mouse position on the
- 2022-05-20 03:31:17下载
- 积分:1
-
Game stone, scissors, fabric source, code, only more than 200 lines, new algorit...
游戏石头、剪子、布的源码,代码只有二百多行,算法新颖-Game stone, scissors, fabric source, code, only more than 200 lines, new algorithm
- 2023-09-08 09:55:03下载
- 积分:1
-
数字图像处理绘制直方图
数字图像处理的基本实验之一,使用自己编写的函数,读入一个图像,将其转为灰度图,并读出每个像素的灰度值,然后绘制灰度图,显示在屏幕上,以bmp的格式存在磁盘中。
- 2022-03-03 14:14:31下载
- 积分:1