-
7-8
C练习题,主要讲了函数的调用问题,举个例子来让大家认识函数调用的运用。(C exercises)
- 2012-06-03 22:02:19下载
- 积分:1
-
是一种主动探测工具pathChirp估计的可用带宽
pathChirp is an active probing tool for estimating the available bandwidth on a communication network path. Based on the concept of "self-induced congestion," pathChirp features an exponential flight pattern of probes we call a chirp. Packet chirps offer several significant advantages over current probing schemes based on packet pairs or packet trains. By rapidly increasing the probing rate within each chirp, pathChirp obtains a rich set of information from which to dynamically estimate the available bandwidth.
- 2022-01-25 22:17:59下载
- 积分:1
-
SSD2828QL9
说明: 用于测试显示屏的MIPI桥接芯片详细规格书,可驱动当下主流的MIPI接口FHD显示屏(Detailed specification of MIPI bridge chip for testing display screen can drive current mainstream MIPI interface FHD display screen)
- 2019-06-25 16:37:20下载
- 积分:1
-
VC++ 6.0 时间控件用法范例
一个使用时间控件的VC++范例源码,这个控件可让用户对所输入时间的精确手动微调,是一个方便用户和减少程序出错率的实用控件,如截图所示的效果。一些相关的设置:
//选择短日期显示格式
m_ctrlDateTime1.ModifyStyle(0, DTS_SHORTDATEFORMAT, 0);
//选择时间显示格式
m_ctrlDateTime2.ModifyStyle(0, DTS_TIMEFORMAT, 0);
//获得当前时间
CTime time = CTime::GetCurrentTime();
//设置时间
m_ctrlDateTime1.SetTime(&time);
m_ctrlDateTime2.SetTime(&time);
- 2022-02-20 22:22:06下载
- 积分:1
-
三款游戏
说明: PYTHON入门游戏学习源码 贪吃蛇、大富翁、小人躲球,通过pygame模块编写,质量高可运行(PYTHON introductory game learning source code snake, billionaire, dodge ball, through the pyGame module, high quality and operational)
- 2019-05-08 21:48:20下载
- 积分:1
-
VC++ Windows扩展名查询及说明程序
VC++ Windows扩展名查询及说明程序,为什么说是说明程序呢?因为查询出扩展名后,会有该扩展名文件类型的说明,用什么程序打开。另外这个查询程序还有一个亮点就是输入提示功能,当你输入任意字符的时候,若有匹配的扩展名,则会在输入框下边显示对应的扩展名类型及说明。
- 2022-02-25 10:39:13下载
- 积分:1
-
最新yaffs2的源代码
最新yaffs2的源代码-Yaffs2 the latest source code
- 2022-04-09 11:41:17下载
- 积分:1
-
综述
说明: 导航类综述性文章,包括MEMS微型惯导综述,单兵自主导航技术等,以及视觉导航综述(Navigation review articles, including MEMS micro-inertial review, individual autonomous navigation technology, and visual navigation overview)
- 2019-04-10 10:31:59下载
- 积分:1
-
99005027
想实现MSN式的提示框吗?这段代码可以帮你 实现这些功能让你的程序更受欢迎(Want to implement a MSN prompt box?)
- 2017-08-17 15:12:48下载
- 积分:1
-
火车订票系统
应用背景用C语言写的火车订票系统,对于C语言学习者学习链表有极大的帮助,内含测试文件供测试。。。。。。。。。。。。关键技术/*定义存储火车信息的结构体*/
struct train
{
char num[10];/*列车号*/
char city[10];/*目的城市*/
char takeoffTime[10];/*发车时间*/
char receiveTime[10];/*到达时间*/
int price;/*票价*/
int bookNum ;/*票数*/
};
/*订票人的信息*/
struct man
{
char num[10];/*ID*/
char name[10];/*姓名*/
int bookNum ;/*需求的票数*/
};
/*定义火车信息链表的结点结构*/
typedef struct node
{
struct train data ;
struct node * next ;
}Node,*Link ;
/*定义订票人链表的结点结构*/
typedef struct people
{
struct man data ;
struct people*next ;
}bookMan,*bookManLink ;
- 2022-02-01 04:42:30下载
- 积分:1