C语言课程设计:计算机设备管理系统(非常着急 恳请各位帮忙 超高悬赏)

来源:百度知道 编辑:UC知道 时间:2024/05/24 00:41:31
一、设计题目
计算机设备管理设计
二、主要内容
某机房要对计算机设备进行自动管理,计算机设备信息括编号、计算机名称、CPU型号、规格、基本配置、生产日期、厂家、单价、数量、管理人、到货日期、是否在用、金额等。
要求编程程序实现如下功能:
1)数据录入:按上面录入计算机设备信息; 2)计算:计算金额=单价*数量,并显示计算机名称、单价、数量、金额、生产商、到货日期等信息;3)修改操作:输入计算机设备名称,修改计算机设备的基本配置、数量、管理人等信息;4)删除:删除指定计算机设备的记录信息。
要求以每个功能以函数实现,以菜单的形式显示各功能,从菜单中选择相应的编号后执行相应的功能。
要求使用结构体定义计算机设备信息,使用C语言实现各功能
楼下的可能需要改一下吧 有谁能帮忙改的 可以提高悬赏
比较着急 最好能今天内搞掂

发邮件给你了。

这个行不?

#define N 100
#include<stdio.h>
#include<string.h>
#include<conio.h>
/*声明*/
void myprint();
int mycreat(struct shebei_type*p,int n);
void mydisplay(struct shebei_type*p,int n);
void mysearch(struct shebei_type*p,int n);
void mymodify(struct shebei_type*p,int n);
int myadd(struct shebei_type*p,int n);
int mydelete(struct shebei_type*p,int n);
void mysort(struct shebei_type*p,int n);
void sch_num(struct shebei_type*p,int n);
void sch_name(struct shebei_type*p,int n);
void mystatic(struct shebei_type*p,int n);
int loadinfo(struct shebei_type*p,int n);
int saveinfo(struct shebei_type*p,int n);
struct date
{ int year;
int month;
int date;
};
struct shebei_type
{int num;
char name[10];
char kind[10];
int price;
struct date time;
char lab[10];
int amount;
}