You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
# 图书管理系统
##项目简介
输入项目菜单
选择并执行项目菜单
## 二级标题
学习 Markdown 格式
列表:
-读数据
-保存数据
### C6: 删除书籍
选择菜单命令: 6 提示删除书籍、你想要删除哪本书籍? 和请输入图书编号, 则输入图书编号。若找到输出书籍的信息并提示Delele, 若没找到则提示Not Found.
```
请选择: 6
Delete Book
Which book you wanna delelet?
Enter book ID: 4
Book
**************** id: 4 ****************
**** title: 《 4 》****
************** Number: 4 **************
************************
Deleted
```
```
请选择: 6
Delete Book
Which book you wanna delelet?
Enter book ID: 5
Not found
```
### C4: 打印书籍
选择菜单命令: 4 提示打印书籍并打印图书信息, 若没有书, 则输出Total: 0 books, 若有书, 则输出书籍信息
```
请选择: 4
Print All Books
Total: 0 books
```
```
请选择: 4
Print All Books
Book
**************** id: 6 ****************
**** title: 《 6 》****
************** Number: 6 **************
Total: 1 books
```