-
当当网项目北大青鸟s1项目
当当网项目北大青鸟s1项目-html project
- 2022-01-26 01:07:38下载
- 积分:1
-
用的是+ +程序,实现有限的
用VC++程序实现有限差分波动方程不加边界条件二阶变速剖面。-With VC++ Procedures to achieve finite-difference wave equation without boundary conditions of second-order variable-speed profile.
- 2022-07-25 07:56:53下载
- 积分:1
-
natural incentive structures under the modal parameter identification, First thr...
自然激励下建筑结构的模态参数识别,首先通过自然激励技术(next)得到结构的自由响应,然后由自回归滑动平均(arma)方法识别模态参数。-natural incentive structures under the modal parameter identification, First through natural incentive Technology (next) to be free to respond to the structure, then autoregressive moving average (arma) identified modal parameters.
- 2022-08-17 09:46:34下载
- 积分:1
-
这是介绍WCF中事务概念的一个例子,用实例介绍事务的概念非常清楚。...
这是介绍WCF中事务概念的一个例子,用实例介绍事务的概念非常清楚。-This is to introduce the concept of WCF in the transaction an example of examples introduce the concept of transaction is very clear.
- 2022-06-26 21:35:37下载
- 积分:1
-
游戏运行时,你只需输入"押金"(任意整数),然后系统会提示你输入一个数,试试看,说不定你要猜中,还要动点脑子哟!^_^祝君好运...
游戏运行时,你只需输入"押金"(任意整数),然后系统会提示你输入一个数,试试看,说不定你要猜中,还要动点脑子哟!^_^祝君好运-running game, you only need to input the "deposits" (arbitrary integer), the system will then prompt you for a few, give it a try, perhaps you want to guess, but also fixed point brain yo! ^ _ ^ Best of luck
- 2022-02-26 22:24:35下载
- 积分:1
-
这是在TC环境下运行的程序,主要实现三维图形的上下左右旋转功能。...
这是在TC环境下运行的程序,主要实现三维图形的上下左右旋转功能。-This is the TC run under the procedure, 3D graphics around the next rotation.
- 2022-01-26 02:33:03下载
- 积分:1
-
这是一个打印钻石的程序
这是一个打印钻石的程序-This is a process Diamond Print
- 2022-07-14 22:02:02下载
- 积分:1
-
similar to the UNIX system simulation of a simple C source code extremely powerf...
类似于 UNIX 系统的简单模拟 C 源代码 功能异常强大 虽小但很实用!-similar to the UNIX system simulation of a simple C source code extremely powerful small but very practical!
- 2022-05-29 19:55:24下载
- 积分:1
-
一个很不错的评标系统,欢迎下在,做评标的可以参考,本人觉得确实不错...
一个很不错的评标系统,欢迎下在,做评标的可以参考,本人觉得确实不错-A very good evaluation system, welcome in, can make the evaluation of reference, I feel really good
- 2022-01-26 14:10:02下载
- 积分: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