-
帮助了解磁盘的物理组织,以及如何通过用户态的程序直接读写磁盘上的信息...
帮助了解磁盘的物理组织,以及如何通过用户态的程序直接读写磁盘上的信息-Help understand the physical disk, as well as how the state through the user directly to read and write disk information
- 2022-08-14 21:31:03下载
- 积分:1
-
vc++ 与 matlab 混合编程例子
vc++ 与 matlab 混合编程例子
- 2022-06-15 17:34:23下载
- 积分:1
-
code to achieve the common computing functions of the calculator. Operators can...
本代码实现普通计算器的计算功能。可以做+,-,*,/运算,是在PB10环境下测试通过的。-code to achieve the common computing functions of the calculator. Operators can do ,-,*,/ is PB10 environment of the test.
- 2023-02-18 20:05:03下载
- 积分:1
-
题目:用c语言编写的程序,求0―7所能组成的奇数个数。
题目:用c语言编写的程序,求0―7所能组成的奇数个数。-Topic: a program in C can calculate the number of all odd numbers that created by the combination of digits between 0 and 7
- 2023-03-13 20:10: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
-
串口调试工具
在c#serialPort类的基础上进行了基本封装,通过委托函数传递参数到界面,实现在辅助线程接收数据的同时实时在界面进行系那是
- 2022-04-09 13:30:51下载
- 积分:1
-
二叉树遍历题目完整代码
这是关于数据结构的树的练习。二叉树的,编写二叉树的先序,中序,后序,遍历等等。在Vs,VC++下都可以运行,第一次上次请大家不要吐槽,谢谢。
- 2022-03-21 09:50:20下载
- 积分:1
-
多线程端口扫描程序源代码
多线程端口扫描程序源代码-multithreaded port scan source code
- 2022-04-24 22:39:27下载
- 积分:1
-
读取rinex文件的完整vc程序
RINEX(接收机自主交换格式/接收机无关交换格式)是在GPS测量应用的标准数据格式常用。的格式使用的文本文件来存储数据,独立于制造商和接收机数据记录格式和具体模型你想读的RINEX files.this是一个项目塔可以帮助你做到这一点!试试吧!
- 2022-03-02 09:24:25下载
- 积分:1
-
对学C#的编程的人具有很大作用,内部介绍说明了如何构建一个银行电子商务系统...
对学C#的编程的人具有很大作用,内部介绍说明了如何构建一个银行电子商务系统-to learn C# programming with the significant role of the internal describe how to build an e-commerce system banks
- 2023-03-25 19:00:03下载
- 积分:1