-
A simple personnel management system that focuses on ASP.NET and databases, as w...
一个简单人事管理系统,主要介绍ASP.NET和数据库以及网站等相关方面知识的应用-A simple personnel management system that focuses on ASP.NET and databases, as well as websites related to the application of knowledge
- 2023-06-21 04:15:04下载
- 积分:1
-
基地64解码和编码2003级
BASE 64 Decoding and Encoding Class 2003
- 2022-05-26 14:27:43下载
- 积分:1
-
big码转GB码源码,即汉字繁简转换
big码转GB码源码,即汉字繁简转换...
big码转GB码源码,即汉字繁简转换
big码转GB码源码,即汉字繁简转换-big switch codes GB source code, that is big Chinese character conversion code to source code GB, Chinese character conversion
- 2022-03-14 19:55:04下载
- 积分:1
-
爱圣》源代码 vc 综合编程
爱圣》源代码 vc 综合编程-"source code vc Integrated Programming
- 2022-12-11 19:10:03下载
- 积分:1
-
一个怎样使Ctrl+Alt+Del按键组合失效的方法的例子 其实现方法简单,有效,很值得借鉴...
一个怎样使Ctrl+Alt+Del按键组合失效的方法的例子 其实现方法简单,有效,很值得借鉴-Disable Ctrl+ALT+Del keys
- 2023-04-09 06:25:03下载
- 积分:1
-
各种插值算法的数值分析,其中包括:牛顿…
数值分析当中的各种插值算法,包括:牛顿插值,三次样条插值,代数插值等等,在工程应用中非常有用!-Numerical analysis of the various interpolation algorithms, including: Newton interpolation, cubic spline interpolation, algebraic interpolation, etc., in engineering applications is very useful!
- 2022-07-26 00:00:21下载
- 积分:1
-
I2C project by using PICf458 and TNC75 (term sensor)
I2C project by using PICf458 and TNC75 (term sensor)
- 2022-06-19 07:04:48下载
- 积分:1
-
Programming using MFC dialog implementation in the digital clock display, the pr...
利用MFC编程在对话框中实现数字时钟的显示,对界面编程有一定的参考作用-Programming using MFC dialog implementation in the digital clock display, the programming interface of some reference value
- 2023-04-15 06:50: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
-
excel操作类源码
一个操作excel的类,封装了常用函数,很实用。
描述: 一个好用的操作EXCEL的类:
1,写入
2,读取
3,单元格合并
4,单元格格式操作
5,插入图片
- 2022-08-26 01:35:57下载
- 积分:1