golang实现书籍管理系统

栏目: Go · 发布时间: 6年前

内容简介:author:shuaibing.huo@gmail.com

author:shuaibing.huo@gmail.com

package main
import (
    "fmt"
    "os"
)
//使用函数实现一个简单的图书管理系统
//每本书有书名、作者、价格、上架信息
//用户可以在控制台添加书籍、修改书籍信息、打印所有书籍列表

//需求分析
//0. 定义结构体
type book struct{
    title string
    author string
    price float32
    publish bool
}
//1. 打印菜单
func showmenu(){
    fmt.Println("欢迎登陆BMS!")
    fmt.Println("1.添加书籍")
    fmt.Println("2.修改书籍")
    fmt.Println("3.展示所有书籍")
    fmt.Println("4.退出")
}

func userInput() *book {
    var (
        title string
        author string
        price float32
        publish bool
        )
    fmt.Println("请根据提示输入相关内容")
    fmt.Print("请输入书名:")
    fmt.Scanln(&title)
    fmt.Print("请输入作者:")
    fmt.Scanln(&author)
    fmt.Print("请输入价格:")
    fmt.Scanln(&price)
    fmt.Print("请输入是否上架(true|false):")
    fmt.Scanln(&publish)
    fmt.Println(title,author,price,publish)
    book := newbook(title,author,price,publish)
    return book
}
//2. 等待用户输入菜单选项
//定义一个book指针的切片,用来存储所有书籍
var allbooks = make([]*book,0,200)

//定义一个创建新书的构造函数
func newbook(title,author string, price float32, publish bool) *book{
    return &book{
        title: title,
        author: author,
        price: price,
        publish: publish,
    }
}
//3. 添加书籍的函数
func addbook(){
    var (
        title string
        author string
        price float32
        publish bool
    )
    fmt.Println("请根据提示输入相关内容")
    fmt.Print("请输入书名:")
    fmt.Scanln(&title)
    fmt.Print("请输入作者:")
    fmt.Scanln(&author)
    fmt.Print("请输入价格:")
    fmt.Scanln(&price)
    fmt.Print("请输入是否上架(true|false):")
    fmt.Scanln(&publish)
    fmt.Println(title,author,price,publish)
    book := newbook(title,author,price,publish)
    for _, b := range allbooks{
        if b.title == book.title{
            fmt.Printf("《%s》这本书已经存在",book.title)
            return
        }
    }
    allbooks = append(allbooks,book)
    fmt.Println("添加书籍成功!")
}
//4. 修改书籍的函数
func updatebook(){
    book := userInput()
    for index, b := range allbooks{
        if b.title == book.title{
            allbooks[index] = book
            fmt.Printf("书名:《%s》更新成功!",book.title)
            return 
        }
    }
    fmt.Printf("书名:《%s》不存在!", book.title )
}
//5. 展示书籍的函数
func showbook(){
    if len(allbooks) == 0 {
        fmt.Println("啥也么有")
    }
    for _, b := range allbooks {
        fmt.Printf("《%s》作者:%s 价格:%.2f 是否上架销售: %t\n",b.title,b.author,b.price,b.publish)
    }
}
//6. 退出 os.Exit(0)

func main(){
    for {
        showmenu()
        var option int
        fmt.Scanln(&option)
        switch option {
        case 1:
            addbook()
        case 2:
            updatebook()
        case 3:
            showbook()
        case 4:
            os.Exit(0)
        }
    }
}

以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

重新理解创业

重新理解创业

周航 / 中信出版集团 / 2018-10-20 / 58.00

易到用车创始人/顺为资本投资合伙人周航,首度复盘20年创业经历,全方位坦陈创业得与失。这不是一本创业成功手册,却是思想的一次出走。 20年创业经历的咀嚼与反思,从战略、品牌、竞争,到流量、领导力、团队管理等,多角度多维度的重新认知,如李开复所言,“都是真刀真枪打出来的经验,值得每一位创业者多读几遍,吸收内化”。 雷军、李开复、徐小平作序,梁建章、张志东、曾鸣推荐。一起来看看 《重新理解创业》 这本书的介绍吧!

HTML 压缩/解压工具
HTML 压缩/解压工具

在线压缩/解压 HTML 代码

Base64 编码/解码
Base64 编码/解码

Base64 编码/解码

RGB CMYK 转换工具
RGB CMYK 转换工具

RGB CMYK 互转工具