-
模拟图书馆的管理查询程序,仅仅用于学习和参考,可直接运行....
模拟图书馆的管理查询程序,仅仅用于学习和参考,可直接运行.-simulation library for the management procedures only for learning and reference, direct running.
- 2022-10-04 01:45:03下载
- 积分:1
-
在.net 下制作的一个基于SQL的学生贷款系统。请大家点评。版权所有,请不要非法传播或者乱改写本系统,否则将追究其法律责任。...
在.net 下制作的一个基于SQL的学生贷款系统。请大家点评。版权所有,请不要非法传播或者乱改写本系统,否则将追究其法律责任。- In which net under manufactures based on the SQL student loans
the system. Invites everybody review. All rights reserved, please does
not want the illegal dissemination or randomly changes the comp book
system, otherwise will investigate its legal liability.
- 2023-03-12 22:50:03下载
- 积分:1
-
vb print control procedures of the task to monitor and control printing tasks
vb 打印任务监控程序 对打印任务进行监控-vb print control procedures of the task to monitor and control printing tasks
- 2022-11-06 01:30:06下载
- 积分:1
-
vc 在MFC程序中显示JPGGIF图像 位图与调色板.zip
vc 在MFC程序中显示JPGGIF图像 位图与调色板.zip-vc
- 2022-01-28 06:18:24下载
- 积分:1
-
用Api做图形编辑器
用Api做图形编辑器-Api do with graphics editor
- 2022-01-25 21:58:53下载
- 积分:1
-
vb写的自动关机的小程序,支持2000/xp/2003
vb写的自动关机的小程序,支持2000/xp/2003-vb write the automatic shutdown of the small programs, support 2000/XP/2003
- 2022-04-08 07:51:54下载
- 积分:1
-
VFP环境下实时数据采集的实现,用DDE实现动态数据交换
VFP环境下实时数据采集的实现,用DDE实现动态数据交换-VFP environment of real-time data acquisition achieved using DDE Dynamic Data Exchange
- 2022-08-07 21:53:22下载
- 积分:1
-
AT89C205 keys 4 through 4 different selection of music by the AT89C205 enlarge p...
AT89C205通过4个按键选择4种不同的音乐,并由AT89C205的p3.7输出经LM386放大,发出四种不同的音乐。-AT89C205 keys 4 through 4 different selection of music by the AT89C205 enlarge p3.7 output by LM386, issued four different music.
- 2022-01-30 16:13:01下载
- 积分:1
-
简单的多个小例子Opengl入门3d图形源代码
有简单的顶点绘制代码,顶点大小代码,直线绘制代码,直线大小代码,点画直线,三角形环绕,实心圆锥,空心凹面多边形,矩形动画,正投影电子核,透视图投影太阳绕月飞行动画,全是源代码,是我亲自试过的,绝对能用
- 2022-08-15 23:27:26下载
- 积分: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