-
access a database management system for the management of students, sql queries...
一个访问数据库的学生管理系统,在后台实现sql查询,详细程序看语句。文本
- 2022-01-26 00:52:43下载
- 积分:1
-
针对Excel表格文件操作的编程实现
可实现读写和表格查询
针对Excel表格文件操作的编程实现
可实现读写和表格查询-against Excel spreadsheet file manipulation of the program can achieve literacy and form inquiries
- 2022-08-24 09:53:03下载
- 积分:1
-
同一个数据库开发的系统,里面有源代码和发布版本
同一个数据库开发的系统,里面有源代码和发布版本-with a database development systems, which Active code and releases
- 2022-03-08 08:46:26下载
- 积分:1
-
a project management procedures. I graduated from the Design
一个工程管理程序!我的毕业设计-a project management procedures. I graduated from the Design
- 2023-06-27 14:25:03下载
- 积分:1
-
对于小型图书销售书店而言此软件具有图书销售管理功能,可大大减轻Boss的工作量及帐目清算工作。也对这方面软件开发者有参考价值。...
对于小型图书销售书店而言此软件具有图书销售管理功能,可大大减轻Boss的工作量及帐目清算工作。也对这方面软件开发者有参考价值。-book sales for small bookstores run the software with book sales management functions. Boss can greatly reduce the workload and accounts for liquidation. Also in this area software developers have reference value.
- 2022-11-12 17:25:03下载
- 积分:1
-
程序功能: 实现一元多项式的四则运算 ,用到的主要就是多现式的实现,除法实现起来是很复杂的。...
程序功能: 实现一元多项式的四则运算 ,用到的主要就是多现式的实现,除法实现起来是很复杂的。-procedures functions : achieving a polynomial of four operations is mainly used in the more- is the realization Apart from achieving up is very complex.
- 2023-03-27 08:25:03下载
- 积分:1
-
短信开发利用kfxt和MSComm控件
sms develop use kfxt and mscomm
and suce-sms develop and use kfxt mscomm and suce
- 2022-08-08 19:25:25下载
- 积分:1
-
1800数据结构及答案
1800道数据结构题和答案-1800 data structure and that the answer
- 2023-07-25 16:55:04下载
- 积分:1
-
网吧管理
网吧管理是项目照顾的网吧相关职能部门。它记录的时间每个用所选计算机上的用户时,可以生成的报告
- 2023-05-19 12:35:03下载
- 积分:1
-
数据结构——链表(双向循环链表)
双向循环链表节点:数据域+指针域指针域:一个指针指向前一个同类型节点,另一个指针指向后一个同类型节点(1)设计节点struct db_node{int data;struct db_node * prev;struct db_node * next;};(2)创建空链表//创建了一个只有头节点的双向循环链表,返回头节点的地址struct db_node * create_db_list(void){struct db_node * phead = (struct db_node *)malloc(sizeof(struct db_node));if(phead == NULL)exit(-1);else{phead->next = phead;phead->prev = phead;}return phead;}(3)制造新节点//制造新节点,返回新节点的地址struct db_node * make_db_node(int value){struct db_node * pnew = (struct db_node *)malloc(sizeof(struct db_node));if(pnew == NULL)printf("malloc failed!
");else{pnew->data = value;pnew->next = NULL;pnew->prev = NULL;}return pnew;}(4)插入节点//把pnew指向的节点插入到头节点的前面,也就是整个链表的末尾bo
- 2022-02-14 07:06:11下载
- 积分:1