author:shuaibing.huo@gmail.com
讓客戶滿意是我們工作的目標(biāo),不斷超越客戶的期望值來自于我們對(duì)這個(gè)行業(yè)的熱愛。我們立志把好的技術(shù)通過有效、簡(jiǎn)單的方式提供給客戶,將通過不懈努力成為客戶在信息化領(lǐng)域值得信任、有價(jià)值的長(zhǎng)期合作伙伴,公司提供的服務(wù)項(xiàng)目有:空間域名、網(wǎng)絡(luò)空間、營(yíng)銷軟件、網(wǎng)站建設(shè)、尚志網(wǎng)站維護(hù)、網(wǎng)站推廣。
package main
import (
"fmt"
"os"
)
//使用函數(shù)實(shí)現(xiàn)一個(gè)簡(jiǎn)單的圖書管理系統(tǒng)
//每本書有書名、作者、價(jià)格、上架信息
//用戶可以在控制臺(tái)添加書籍、修改書籍信息、打印所有書籍列表
//需求分析
//0. 定義結(jié)構(gòu)體
type book struct{
title string
author string
price float32
publish bool
}
//1. 打印菜單
func showmenu(){
fmt.Println("歡迎登陸B(tài)MS!")
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("請(qǐng)根據(jù)提示輸入相關(guān)內(nèi)容")
fmt.Print("請(qǐng)輸入書名:")
fmt.Scanln(&title)
fmt.Print("請(qǐng)輸入作者:")
fmt.Scanln(&author)
fmt.Print("請(qǐng)輸入價(jià)格:")
fmt.Scanln(&price)
fmt.Print("請(qǐng)輸入是否上架(true|false):")
fmt.Scanln(&publish)
fmt.Println(title,author,price,publish)
book := newbook(title,author,price,publish)
return book
}
//2. 等待用戶輸入菜單選項(xiàng)
//定義一個(gè)book指針的切片,用來存儲(chǔ)所有書籍
var allbooks = make([]*book,0,200)
//定義一個(gè)創(chuàng)建新書的構(gòu)造函數(shù)
func newbook(title,author string, price float32, publish bool) *book{
return &book{
title: title,
author: author,
price: price,
publish: publish,
}
}
//3. 添加書籍的函數(shù)
func addbook(){
var (
title string
author string
price float32
publish bool
)
fmt.Println("請(qǐng)根據(jù)提示輸入相關(guān)內(nèi)容")
fmt.Print("請(qǐng)輸入書名:")
fmt.Scanln(&title)
fmt.Print("請(qǐng)輸入作者:")
fmt.Scanln(&author)
fmt.Print("請(qǐng)輸入價(jià)格:")
fmt.Scanln(&price)
fmt.Print("請(qǐng)輸入是否上架(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》這本書已經(jīng)存在",book.title)
return
}
}
allbooks = append(allbooks,book)
fmt.Println("添加書籍成功!")
}
//4. 修改書籍的函數(shù)
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. 展示書籍的函數(shù)
func showbook(){
if len(allbooks) == 0 {
fmt.Println("啥也么有")
}
for _, b := range allbooks {
fmt.Printf("《%s》作者:%s 價(jià)格:%.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實(shí)現(xiàn)書籍管理系統(tǒng)
轉(zhuǎn)載注明:http://muchs.cn/article30/pjjsso.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供品牌網(wǎng)站設(shè)計(jì)、網(wǎng)站營(yíng)銷、企業(yè)建站、服務(wù)器托管、做網(wǎng)站、靜態(tài)網(wǎng)站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)