-
该辅助工具能够对使用VC的用户提供许多有用的帮助。比如自动完成拼写,函数参数提示等等。...
该辅助工具能够对使用VC的用户提供许多有用的帮助。比如自动完成拼写,函数参数提示等等。-the auxiliary tool to be able to use the VC provide many useful help. For example, automatic spelling, function parameters suggest so on.
- 2022-03-16 05:23:59下载
- 积分: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
-
a hook on the original programming code
一个关于hook的编程原代码-a hook on the original programming code
- 2022-04-20 17:51:07下载
- 积分:1
-
旋转裁剪图片的源文件,实现图片任意角度的旋转裁剪功能
旋转裁剪图片的源文件,实现图片任意角度的旋转裁剪功能-Crop rotation picture header file, to achieve picture at any angle of rotation cropping feature
- 2022-04-21 13:56:48下载
- 积分:1
-
一个用C++写的游戏,可在VC下编译,也可兼容其它C++编译器
一个用C++写的游戏,可在VC下编译,也可兼容其它C++编译器-One with C++ Write the game, can be compiled under VC, but also compatible with other C++ Compiler
- 2022-03-24 01:18:16下载
- 积分:1
-
双龙电子增补库文件libslavr.a、slavr.h
libslavr.a是库文件,需要将其和ICC标准库文件放到一起,正常情况为:C:icclib...
双龙电子增补库文件libslavr.a、slavr.h
libslavr.a是库文件,需要将其和ICC标准库文件放到一起,正常情况为:C:icclib。
slavr.h是头文件,要使用库函数需要包含此头文件。-Added to the library file Shuanglong electronic libslavr.a, slavr.hlibslavr.a is a library file, and the ICC needs to be put together with the standard library file, the normal situation: C: icclib. slavr.h is the header file, it is necessary to use the library functions need to include this header file.
- 2022-02-24 16:30:34下载
- 积分:1
-
如果您还没有注册,请先注册。源码要求为至少5个C或Java源码或其他好源码或编程学习资料,质量越高得到的下载个数越多(一般上传5个,可以下载200个)。...
如果您还没有注册,请先注册。源码要求为至少5个C或Java源码或其他好源码或编程学习资料,质量越高得到的下载个数越多(一般上传5个,可以下载200个)。
请不要重复上传同一源码, 站长审核合格后才能开通帐号。如果不想上传源码,可以成为【VIP会员】获得帐号
如果其他会员下载一次您上传的源码,您的可用下载数就会增加1次。更多说明请参看[帮助说明]
-如果您还没有注册,请先注册。源码要求为至少5个C或Java源码或其他好源码或编程学习资料,质量越高得到的下载个数越多(一般上传5个,可以下载200个)。
请不要重复上传同一源码, 站长审核合格后才能开通帐号。如果不想上传源码,可以成为【VIP会员】获得帐号
如果其他会员下载一次您上传的源码,您的可用下载数就会增加1次。更多说明请参看[帮助说明]
- 2022-03-03 06:06:06下载
- 积分:1
-
发现HSV范围
#包括“stdafx.h”
- 2022-02-06 08:47:30下载
- 积分:1
-
windows下创建process的程序
windows下创建process的程序-windows process created under the procedures
- 2022-03-25 14:22:35下载
- 积分:1
-
c语言用顶点数做的浮点运算,java封装了一下
c语言用顶点数做的浮点运算,java封装了一下-vertices do with the floating-point operations, a little java Packaging
- 2022-03-23 14:34:59下载
- 积分:1