-
C#ATM机 详细源码注释
C#ATM机 内含详细注释 对新手帮助很大非常好的银行取款机系统用VB写的绝对经典哦哦哦 免费开源代码 ...
- 2022-01-25 20:11:51下载
- 积分: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
-
一种实现列表框的方法
带颜色的listBox,有例子,用起来很方便
功能很简单-a method to realize listBox
- 2022-02-01 04:43:02下载
- 积分:1
-
本人写的一个软计算器,可以在文本框中输入算式,感觉比较好用...
本人写的一个软计算器,可以在文本框中输入算式,感觉比较好用-I wrote a soft calculator, you can enter the formula in the text box, I feel relatively easy to use
- 2022-04-22 03:28:33下载
- 积分:1
-
Visual Basic 编写,桌面图标文字背景为透明色
Visual Basic 编写,桌面图标文字背景为透明色-Visual Basic preparation, desktop icon transparent text background color
- 2022-05-11 02:41:24下载
- 积分:1
-
Forrest Shull
Guide to advanced empirical software engineering
2008
Forrest Shull
Guide to advanced empirical software engineering
2008
- 2022-03-31 03:30:04下载
- 积分:1
-
internetwhitebrid
网际网
- 2022-10-31 01:10:03下载
- 积分:1
-
vc++的谱减程序,与martin的谱减算法相对应,包括fft,iff,hamming窗,噪声估计及谱减主体等成员函数...
vc++的谱减程序,与martin的谱减算法相对应,包括fft,iff,hamming窗,噪声估计及谱减主体等成员函数-vc++ the spectrum by the procedure, and the spectral subtraction algorithm martin corresponding to, including the fft, iff, hamming window and the noise spectrum is estimated by the main member functions, etc.
- 2022-01-25 21:10:01下载
- 积分:1
-
C 程序经典900例
C 程序经典900例-C procedures classic 900 cases
- 2022-02-12 07:07:14下载
- 积分:1
-
这个源代码主要完成了一个创建窗口的功能。详细描述了如何用VC创建窗口的过程。...
这个源代码主要完成了一个创建窗口的功能。详细描述了如何用VC创建窗口的过程。-The source code to create the main window to complete a function. Described in detail how to create a window of VC process.
- 2022-03-18 08:44:22下载
- 积分:1