三九宝宝网宝宝教育教学论文

一个简单的图书管理系统 C语言

01月04日 编辑 39baobao.com

[求一图书管理系统C语言程序]#include #include struct BOOK { int id,usr[10],total,store,days[10]; char name[31],author[21]; }books[100]; /*上面是结构体的定义,用于存放书籍及借书的信息。*/ void...+阅读

#include#include int function1(); int function2(); int function3(); int function4(); int function5(); int function6(); int function7(); int function8(); int main(void) { int choice; printf("======大学信息管理系统=====\n"); printf("---------------------------\n"); printf("1:办公室管理 5:财务管理\n"); printf("2:教务管理 6:图书管理\n"); printf("3:科研管理 7:设备管理\n"); printf("4:人事管理 8:后勤管理\n"); printf(" 0:退出系统\n"); printf("---------------------------\n"); printf("请您在上述功能中选择(0--8):"); do { scanf("%d",&choice); switch(choice) { case 1:function1();break; case 2:function2();break; case 3:function3();break; case 4:function4();break; case 5:function5();break; case 6:function6();break; case 7:function7();break; case 8:function8();break; case 0:exit(0); default: printf("无此功能!\n请重新选择:\n"); } }while

(1); return(0); } function1() { printf("该功能还未开放\n"); } function2() { printf("该功能还未开放\n"); } function3() { printf("该功能还未开放\n"); } function4() { printf("该功能还未开放\n"); } function5() { printf("该功能还未开放\n"); } function6() { printf("该功能还未开放\n"); } function7() { printf("该功能还未开放\n"); } function8() { printf("该功能还未开放\n"); }

以下为关联文档:

C语言图书管理系统原发布者:天使小白很黑 图书管理系统设计图书管理信息包括:图书名称、图书编号、单价、作者、存在状态、借书人姓名、性别、学号等功能描述:1.新进熟土基本信息地输入2.图书基...

图书信息管理程序用C语言编写#include#include#include#include#include#define STACK_INIT_SIZE 10 #define OK 1 #define TRUE 1 #define FALSE 0 #define ERROR 0 struct student /*定义学生类型,用于...

C语言图书信息管理系统原发布者:佴卬茕 HUNANUNIVERSITYC语言程序训练报告【设计目的】图书信息包括:读者登录号、管理员登录号、图书编号、作者名、种类、出版社、图书库存、图书借出数目等.图书...

图书信息管理系统设计 c语言高级语言程序设计(2)课程设计 一程序设计说明书【设计题目】图书馆借阅管理【问题描述】图书馆,适合用C++面向对象的功能来描述。图书馆管理系统分为借书、还书、图书管理和读...

用C语言编写一个简单的图书管理小程序源代码如下: #include<iostream> #include<iomanip> #include<string> #include<fstream> #include<stdio.h> using namespace std; const int maxb=10000; //最多的图书 clas...

如何使用C语言编写图书管理系统图书管理系统是运行于Windows系统下的应用软件,主要用于对图书馆中的图书信息进行增、删、改、查等操作,并且还可对使用该系统的用户进行登录名和密码的管理等。系统给用户提...

急求c语言程序设计图书管理系统源代码#include#include#include#include#define N 100 //书籍的最多本数 struct book { char title[30]; int number; char author[30]; float price; int store; char borrower_...

求C语言图书馆管理程序汗.第二个要这个的人..12小时内碰到俩啦 #include#include#include// #define MAXSIZE 100 //最大值定义为100 #define LIST_INIT_SIZE 100//图书证使用者最大值定义为100 /...

用C语言编一个简单的图书管理系统包括借阅查询还书三部分学展开全部#include#include struct sale/*商品名的定义*/ {int number; char name[20]; float price; long count; long time; long date;}; /*各个函数*/ void input(struct s...

推荐阅读
图文推荐