-
《visual c++6.0实用教程》(杨永国)第7章源代码,自己编写。仅供参考,因为我觉得本书这章漏了一些说明。...
《visual c++6.0实用教程》(杨永国)第7章源代码,自己编写。仅供参考,因为我觉得本书这章漏了一些说明。
- 2022-06-28 11:24:36下载
- 积分:1
-
试试看,是个一般的文件,我想可以的,不知道这次行不行
试试看,是个一般的文件,我想可以的,不知道这次行不行-Try and be a general document, I think it is, do not know this is feasible
- 2022-10-17 12:00:02下载
- 积分:1
-
一个多波段示波器的例子
一个多波段示波器的例子--An example of multichannel oscilloscope
- 2022-03-01 22:40:16下载
- 积分:1
-
模拟驾驶人考试机动车软件操作
在机动车驾驶人科目二考试中,需要对档位、刹车、油门、离合器进行检测,为了验证上位机功能,需要通过实车进行调试,本软件使用模拟的方法,不需要试车进行调试,节省了不少费用。
- 2022-05-23 08:17:49下载
- 积分:1
-
是一个监控网络信息的东西, 观察到本机的网络链接情况, 并且能够显示端口号....
是一个监控网络信息的东西, 观察到本机的网络链接情况, 并且能够显示端口号.-is an information network monitoring things, observed that the plane of the network link, and can show the port.
- 2022-06-18 16:36:26下载
- 积分:1
-
获得Access中密码,VC++程序源代码,希望各位能用上。
获得Access中密码,VC++程序源代码,希望各位能用上。-Access in the password access, VC program source code, hope that can be used on.
- 2023-07-06 12:00:03下载
- 积分: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
-
visual sense 下的MCL仿真程序
visual sense 下的MCL仿真程序-simulation program for MCL under platform visual sense
- 2022-02-03 23:03:14下载
- 积分:1
-
Hello world in C
Hello world in C-- for Windows.
- 2022-01-27 10:25:27下载
- 积分:1
-
研究性的源代码,研究自定义对话框的实现
研究性的源代码,研究自定义对话框的实现-study the source code, since the definition of research to achieve the dialog
- 2022-06-17 18:58:37下载
- 积分:1