本人急求一个图书库存管理系统.求各位高手帮帮忙

来源:百度知道 编辑:UC知道 时间:2024/06/05 06:04:37
运行环境:windos2000+asp+access
课题要求及硬件、软件环境
硬件环境:计算机1-2台
软件环境:1、采用WIN2K+ASP+ACCESS+IIS开发;
2、采用B/S结构;
课题名称:书店图书库存管理系统

课题内容
该系统可实现以下功能:
1、能对图书的入库、出库、盘点、及库存量进行管理;
2、能对出入库的年报、月报、统计、名细、汇总等进行管理;
3、当库存量不足时,应有及时报警功能;
4、具有网上预定功能;

C/S的到是有。

晕,老大,人家要BS模式的。怎么C的都搞出来了。

#include"stdio.h"
#include"math.h"
#include"string.h"
#define N 10
struct book
{char num[10];
char name[15];
char author[15];
char press[15];
float price;
int sum;
}book[N],new,sell;
main()
\n");
printf("*-----------------------------------------------------*\n");
printf("please choose the kind of serve.\n");
L1:choice=getchar();
if(choice=='e'||choice=='E')break;
switch(choice)
{
case 'B': case 'b':
breg();break;
case 'S':case 's':
sman();break;
case 'I':case 'i':
inqur();break;
case 'R':case 'r':
reserve();break;
default:putchar('\b');
printf("please entre your choice.\n");
goto L1; <