-
论述*P++等价于(*p)++还是等价于*(p++)的问题,为了验证这个问题,编写了下面的小程序(vc++6.0编译环境),作为验证...
论述*P++等价于(*p)++还是等价于*(p++)的问题,为了验证这个问题,编写了下面的小程序(vc++6.0编译环境),作为验证-Paper* P++ Is equivalent to (* p)++ Or equivalent to* (p++) Problems, in order to verify this issue, prepared the following small program (vc++ 6.0 compiler environment ), as a validation
- 2022-11-30 23:50:03下载
- 积分:1
-
多线程编程的例子,SDK编程有帮助的,适合初学者
多线程编程的例子,SDK编程有帮助的,适合初学者-Examples of multi-threaded programming, SDK programming help for beginners
- 2023-06-17 23:05:03下载
- 积分:1
-
在工具栏上添加Combo控件
在工具栏上添加Combo控件-Combo on the toolbar to add controls. . . . . .
- 2022-06-13 15:23:17下载
- 积分:1
-
项目代码。原名为棉阳冲击
系统测试用的。・
项目代码。原名为棉阳冲击
系统测试用的。・-item code. It was originally called Cotton Yang impact of system testing.
- 2022-02-04 09:17:17下载
- 积分:1
-
图书馆综合管理系统软件适用于单位图书馆,学校图书馆,图书租借机构的超级图书管理软件,是您管理图书的最佳帮手。方便借书、还书、查找等操作。方便添加图书、管理图书、...
图书馆综合管理系统软件适用于单位图书馆,学校图书馆,图书租借机构的超级图书管理软件,是您管理图书的最佳帮手。方便借书、还书、查找等操作。方便添加图书、管理图书、管理用户。提供完善的借书和还书操作,完全独立的数据库系统,数据管理为您提供:借阅管理、入库管理、销售管理、库存管理及其书目管理。图书馆综合管理系统在实施后,应能够达到以下目标: ● 实现多点操作的信息共享、相互之间的信息传递准确、快捷和顺畅。 ● 系统采用人机对话方式,菜单提示,界面美观友好、信息查询灵活、方便、快捷、准确、数据存储安全可靠,实现了开架借书,加强了图书流通管理。 ● 提供完善的借书和还书操作,完全独立的数据库系统。 ● 系统最大限度地实现了易安装性、易维护性和易操作性。 ● 数据保密性强,记录数据只能由本人及上级查询,每个用户权限可设置级别级,有利于用户安全操作使用。 ● 系统有严格的纠错功能,对用户输入的数据,系统进行严格的数据检验,尽可能排除人为的错误。 ● 内部业务操作数据量大、处理时效性强。-Integrated library management system software for the unit libraries, school libraries, books, book rental agencies super-management software is the best helper you manage books. Convenience of borrowing, but also books, to find such an operation. Easy to add books, management books, management of users. Provide a sound library and book operations, completely independent of the database systems, data management, to provide you with: Lending management, storage management, sales management, inventory management and bibliographic management. The impleme
- 2023-08-08 08:50:04下载
- 积分:1
-
X86平台计算量计算代码
在Intel X86平台上通过读取硬件时钟计算,在程序的两端分别获取,可以精确的计算程序的运行时间,以CPU时钟周期为单位,是能获取到的最精确的方法
- 2022-07-03 12:41:33下载
- 积分:1
-
com asynchronous processing examples on the Internet to find, and that a simple...
com异步处理例子,在网上找到的,做了简单修改-com asynchronous processing examples on the Internet to find, and that a simple modification
- 2023-04-26 00:45:03下载
- 积分:1
-
获取windows的版本号及运行模式,VC++实现,测试通过
获取windows的版本号及运行模式,VC++实现,测试通过-Windows to obtain the version number and operating mode, VC++ to achieve, the test
- 2023-04-30 19:35:03下载
- 积分:1
-
比萨饼订单系统
比萨饼订购 machineIf 您不能找到这种语言在语言列表中,请选择"其他"。保持简短、 精确和完整的标签,请仅使用"、"要分开。如果在你的描述中有代码,请使用"插入代码"按钮来插入代码并选择编程语言。这将使您的源代码美丽和有吸引力。请不要提交非源编码材料。
- 2022-12-30 23:25:05下载
- 积分: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