golang實現書籍管理系統
阿新 • • 發佈:2019-05-09
books string 需求分析 main n) import bin append 系統 author:[email protected]
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) } } }
golang實現書籍管理系統