-
windows平台下DES加密类,VC++6.0环境编译
windows平台下DES加密类,VC++6.0环境编译-DES encryption windows platform category, VC++6.0 compiler environment
- 2022-02-22 06:30:38下载
- 积分:1
-
《PICASSO设计系统使用说明》提供给电脑横机的设计者使用
《PICASSO设计系统使用说明》提供给电脑横机的设计者使用- PICASSO use design system available to the designers of computer flat knitting machine used
- 2022-07-24 01:01:54下载
- 积分:1
-
calculator
我在c builder中制作的这个计算器将帮助您进行任何操作。例如like+/-/*。
- 2022-10-26 02:20:03下载
- 积分:1
-
C++显示天气预报
此代码是用c++编写的简单明了的显示天气预报的小程序,希望能给大家带来帮助,大家耐心研究即可,好好努力啊,加油
- 2022-03-04 06:30:17下载
- 积分:1
-
拼图游戏,mfc写的拼图游戏,自己感觉还不错
拼图游戏,mfc写的拼图游戏,自己感觉还不错-pintu,write by mfc!
- 2022-10-04 08:20:04下载
- 积分:1
-
C++函数库查询辞典最新版,对C++的相关函数进行说明
C++函数库查询辞典最新版,对C++的相关函数进行说明-C++ library check dictionaries latest version of the C++ a description of the correlation function
- 2022-03-16 17:46:08下载
- 积分:1
-
使用算术表达式的计算器,且带有常用单位转换工具,在BCB2007下编译通过。...
使用算术表达式的计算器,且带有常用单位转换工具,在BCB2007下编译通过。-The use of arithmetic expression calculator and unit conversion tool with a commonly used in the compiler under BCB2007 through.
- 2022-03-05 07:46:40下载
- 积分:1
-
简单的浏览器,基本不需添加代码就可以浏览网页,但是进一步改动就可以实现更多的功能....
简单的浏览器,基本不需添加代码就可以浏览网页,但是进一步改动就可以实现更多的功能.-simple browser, without adding basic code can visit the website, but further changes can be achieved more features.
- 2022-03-19 01:59:31下载
- 积分: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
-
C language prepared by the serial communication program
C语言编写的串口通讯程序-C language prepared by the serial communication program
- 2022-06-16 04:18:04下载
- 积分:1