-
rs232 串口通行 16进制
用于与rs232通行用,环境vs2012,能直接发送和接受16进制数据,可作为软件串口调试或串口通信开放用。能直接运行。
- 2023-02-02 16:35: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
-
os Experiment (missing pages interruption), writing a good hard ah, because not...
os实验(缺页中断),写的好辛苦啊,因为没有从事c/c++.-os Experiment (missing pages interruption), writing a good hard ah, because not engaged in c/c.
- 2022-04-15 02:38:57下载
- 积分:1
-
windows procedure Winston Installer Version 2.15 Copyright? 1992,1993 DSI
windows 程序Winston Installer
Version 2.15
Copyright ?1992,1993 DSI-windows procedure Winston Installer Version 2.15 Copyright? 1992,1993 DSI
- 2022-03-15 03:04:01下载
- 积分:1
-
解决N后问题,可以实现在一个n*n的棋盘上放置N
解决N后问题,能够实现在一个N*N的棋盘上放置N个皇后,然后使其满足条件-Solve the N after the issue, can be realized in an N* N chessboard placed on N-Queen s, and then to meet the conditions
- 2022-03-18 13:11:57下载
- 积分:1
-
超市管理系统(三层架构)
应用背景使用了三层架构的超市系统,功能比较齐全,可二次开发使用。真心不错关键技术1、进货管理
主要包括了采购进货、退货、财务往来、采购单据查询、库存查询等主要功能
2、销售管理
主要包括了商品销售信息、顾客退货、库存查询等主要功能
3、统计报表
主要包括供应商、商品采购、客户销售等方面的统计
4、日常管理
请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
- 2022-03-21 21:15:46下载
- 积分:1
-
透明窗口
透明窗口-The example of transparent window
- 2023-05-26 16:00:03下载
- 积分:1
-
abela beier 编程
abela beier 编程-program with abela beier
- 2022-04-15 16:00:11下载
- 积分:1
-
用C#编写的学习正则表达式的小工具
用C#编写的学习正则表达式的小工具-C# study prepared by the regular expression is a small tool
- 2022-07-19 16:15:48下载
- 积分:1
-
Gridlistctrl改进的列表类
Gridlistctrl改进的列表类-Gridlistctrl Improved category list
- 2022-03-12 16:43:02下载
- 积分:1