
管理系统
Pink&Sakura
C、C++、Java、前端
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
俄罗斯方块(C++大作业)
源代码 效果图: #define _CRT_SECURE_NO_WARNINGS #include<iostream> #include<string> #include<vector> #include<fstream> #include <windows.h> #include <conio.h> #include<string> using namespace std; struct Co..原创 2021-07-15 18:52:57 · 567 阅读 · 0 评论 -
图书信息管理系统C++
实验要求: 实验代码; #include <iostream> #include <cstdio> #include <string> #include <cstring> #include <fstream> #include <iomanip> #include <ctype.h> using namespace std; //图书结构体 struct Book { double price; .原创 2021-09-16 13:29:34 · 2113 阅读 · 0 评论 -
C 语言实现图书管理系统
#include<stdio.h> #include<string.h> #include<math.h> #include<stdlib.h> #include <conio.h> #define N 1000//定义结构体最大长度 struct book{ char name[60];//书名 char num[20];//图书编号 double price;//书籍价格 char Head[100]; }bk[150]; int .原创 2021-09-16 13:31:31 · 1452 阅读 · 2 评论 -
用单链表实现图书信息的管理C++
这是图书信息测试txt文件,由于是oj搞过来的代码,只是简单复制粘贴了一下oj里面的代码段,然后我又自己加了一些逻辑是之成为一个完整的图书管理系统。录入信息的方式一共有3种,具体怎么录入信息看提示。 可能部分逻辑并不是很完美,只是实现了基本的功能,之后有时间还会优化一下逻辑结构 8 9787302257646 Data-Structure 35.00 9787302164340 Operating-System 50.00 9787302219972 Software-Engineer 32.00 9原创 2021-11-02 00:07:37 · 1478 阅读 · 1 评论