author:shuaibing.huo@gmail.com
10年積累的成都網(wǎng)站建設(shè)、網(wǎng)站制作經(jīng)驗(yàn),可以快速應(yīng)對(duì)客戶(hù)對(duì)網(wǎng)站的新想法和需求。提供各種問(wèn)題對(duì)應(yīng)的解決方案。讓選擇我們的客戶(hù)得到更好、更有力的網(wǎng)絡(luò)服務(wù)。我雖然不認(rèn)識(shí)你,你也不認(rèn)識(shí)我。但先做網(wǎng)站設(shè)計(jì)后付款的網(wǎng)站建設(shè)流程,更有龍鳳免費(fèi)網(wǎng)站建設(shè)讓你可以放心的選擇與我們合作。package main
import (
"fmt"
"os"
)
//使用函數(shù)實(shí)現(xiàn)一個(gè)簡(jiǎn)單的圖書(shū)管理系統(tǒng)
//每本書(shū)有書(shū)名、作者、價(jià)格、上架信息
//用戶(hù)可以在控制臺(tái)添加書(shū)籍、修改書(shū)籍信息、打印所有書(shū)籍列表
//需求分析
//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.添加書(shū)籍")
fmt.Println("2.修改書(shū)籍")
fmt.Println("3.展示所有書(shū)籍")
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)輸入書(shū)名:")
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. 等待用戶(hù)輸入菜單選項(xiàng)
//定義一個(gè)book指針的切片,用來(lái)存儲(chǔ)所有書(shū)籍
var allbooks = make([]*book,0,200)
//定義一個(gè)創(chuàng)建新書(shū)的構(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ū)籍的函數(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)輸入書(shū)名:")
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》這本書(shū)已經(jīng)存在",book.title)
return
}
}
allbooks = append(allbooks,book)
fmt.Println("添加書(shū)籍成功!")
}
//4. 修改書(shū)籍的函數(shù)
func updatebook(){
book := userInput()
for index, b := range allbooks{
if b.title == book.title{
allbooks[index] = book
fmt.Printf("書(shū)名:《%s》更新成功!",book.title)
return
}
}
fmt.Printf("書(shū)名:《%s》不存在!", book.title )
}
//5. 展示書(shū)籍的函數(shù)
func showbook(){
if len(allbooks) == 0 {
fmt.Println("啥也么有")
}
for _, b := range allbooks {
fmt.Printf("《%s》作者:%s 價(jià)格:%.2f 是否上架銷(xiāo)售: %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)
}
}
}
另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無(wú)理由+7*72小時(shí)售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國(guó)服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡(jiǎn)單易用、服務(wù)可用性高、性?xún)r(jià)比高”等特點(diǎn)與優(yōu)勢(shì),專(zhuān)為企業(yè)上云打造定制,能夠滿(mǎn)足用戶(hù)豐富、多元化的應(yīng)用場(chǎng)景需求。
標(biāo)題名稱(chēng):golang實(shí)現(xiàn)書(shū)籍管理系統(tǒng)-創(chuàng)新互聯(lián)
路徑分享:http://muchs.cn/article14/dgcjde.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站設(shè)計(jì)、網(wǎng)站策劃、手機(jī)網(wǎng)站建設(shè)、網(wǎng)站營(yíng)銷(xiāo)、自適應(yīng)網(wǎng)站、動(dòng)態(tài)網(wǎng)站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶(hù)投稿、用戶(hù)轉(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í)需注明來(lái)源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容