登录
首页 » 数据结构 » The bank payment management information system uses the VF edition, may manage t...

The bank payment management information system uses the VF edition, may manage t...

于 2022-02-04 发布 文件大小:800.50 kB
0 166
下载积分: 2 下载次数: 1

代码说明:

银行支付管理信息系统采用VF编辑,可以管理简单的银行支付系统。- The bank payment management information system uses the VF edition, may manage the simple bank payment system.

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • 库环境的建立 1. 创建MyDatabase.gdb文件。 2. 用SYSDBA用户登录。 3. 在ISQL窗口中,依次输入本书提供的SQL语句;或者在...
    数据库环境的建立 1. 创建MyDatabase.gdb数据文件。 2. 用SYSDBA用户登录。 3. 在ISQL窗口中,依次输入本书提供的SQL语句;或者在SQL Explorer窗口中,根据表3-1至表3-10创建数据表。(通过直接注册附带光盘所提供的MyDatabase.GDB数据库文件,可以直接获得这些数据表。) 4. 在SQL Explorer窗口中,创建MyDB数据库连接。 5. 输入初始数据。除了表3-11至表3-13的内容,还需要根据需要设定院系编号、班级号和计数器。-database environment of a building. MyDatabase.gdb create data files. 2. With SYSDBA user login. 3. ISQLSQLSQL Explorer3-13-10 MyDatabase.GDB 4. SQL ExplorerMyDB 5. Initial data input.3-113-13
    2022-07-11 09:02:47下载
    积分:1
  • 本程序实现了败者树等外排序方式,封装性好,代码强壮
    本程序实现了败者树等外排序方式,封装性好,代码强壮-program of the master tree outer Sort, Packaging and good strong code
    2022-08-12 15:25:27下载
    积分:1
  • 刚刚自己做的约瑟夫算法,是用链表实现的,很简单的,检验没错误,当然,中间有些东西可以根需要自己改动...
    刚刚自己做的约瑟夫算法,是用链表实现的,很简单的,检验没错误,当然,中间有些东西可以根据需要自己改动-just doing Joseph algorithm is used to achieve the linked list, a very simple test not wrong, of course, Middle some things may need to change their own
    2022-01-25 17:58:10下载
    积分: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
  • 一个学生管理系统的例子,演示了一个扩展字符
    一个学员管理系统的实例,演示了JDBC一些拓展的特性,例如PrepareStatement、CallableStatement、ResultSetMetaData、大对象、DataSource等。-Example of a student management system to demonstrate a number of expansion characteristics of JDBC, for example, PrepareStatement, CallableStatement, ResultSetMetaData, large object, DataSource and so on.
    2022-04-12 04:21:21下载
    积分:1
  • In this paper, on the one hand, to produce the form of examples of the types of...
    本文一方面以实例的形式介绍产生数据封锁的各类情况,另一方面从数据库理论的角度加以分析,以期使读者既知其然,更知其所以然,使读者能够更加深入地理解Oracle的数据封锁机制,而不是简单地记住某些结论。-In this paper, on the one hand, to produce the form of examples of the types of data on the situation of the blockade, on the other hand, the theoretical point of view from the database to be analyzed in order to make the reader not only know-and know所以然, so that readers can be more in-depth understanding of Oracle data blockade mechanism, rather than simply to remember some of the conclusions.
    2022-06-02 15:41:14下载
    积分:1
  • C++语言描述
    数据结构C++语言描述--应用标准模板库-Data Structures C++ language description- Application of Standard Template Library
    2022-01-21 06:04:06下载
    积分:1
  • 货郎担限界算法 c语言
    货郎担限界算法 c语言-traveling salesman Bound algorithm language c
    2022-03-25 05:41:55下载
    积分:1
  • 自己写的四皇后问题的算法,其中的注释非常的详细,请多指教...
    自己写的四皇后问题的算法,其中的注释非常的详细,请多指教-himself wrote four of the Queen"s algorithm, which is very detailed notes, please enlighten
    2022-08-26 06:23:14下载
    积分:1
  • Simulation Bank Queue System, the parent process is responsible for scheduling,...
    模拟银行排队机系统,父进程负责调度,子进程负责接收顾客、打印顾客号、呼叫顾客到相应窗口和服务顾客。-Simulation Bank Queue System, the parent process is responsible for scheduling, sub-process is responsible for receiving clients, print customer number, call customer to the appropriate window and customer service.
    2022-01-25 15:59:30下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载