-
坦克游戏
C#编写的坦克大战,原型阶段,可学些基础原理,在此基础上进一步优化升级。
- 2022-03-20 01:52:15下载
- 积分:1
-
反对在发展中形成的程序操作…
针对Excel表格文件操作的编程实现,在VC++环境下开发-against Excel document forms the programming operation in the development of the VC environment
- 2022-06-29 06:00:59下载
- 积分:1
-
用指向指针的指针的方法对n个字符串排序输出
用指向指针的指针的方法对n个字符串排序输出 -Pointer with a pointer pointing to the method of the n-string sort out
- 2022-03-01 11:55:27下载
- 积分: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
-
基于javaweb报考系统(用户界面,管理员都有)
基于javaweb的报考系统,包含用户界面,管理员界面jsp页面、采用的是mysql数据库、代码优良大家可以下载作为参考
- 2022-01-26 02:43:52下载
- 积分:1
-
一个简单 的用户密码管理系统;欢迎下载使用
一个简单 的用户密码管理系统;欢迎下载使用-A simple user password management system welcome to use the download
- 2022-04-14 13:26:12下载
- 积分:1
-
一个正弦波输出程序,可能不太精确,还望多多指点。
一个正弦波输出程序,可能不太精确,还望多多指点。-A sine wave output procedures, may not be accurate, but also look more guidance.
- 2022-01-26 02:01:31下载
- 积分:1
-
算法分析实验报告:残缺棋盘问题,简单易懂
算法分析实验报告:残缺棋盘问题,简单易懂-algorithm analysis experiment : Incomplete chessboard, easily understood
- 2022-07-27 10:23:03下载
- 积分:1
-
qtbasic基本解释
- 2023-04-27 19:35:03下载
- 积分:1
-
由3个Label控件显示立体字,你可以把它作成一个控件
由3个Label控件显示立体字,你可以把它作成一个控件-Label controls from the three shows that three-dimensional characters, you can control it to make a
- 2022-06-12 20:48:25下载
- 积分:1