真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

golang實(shí)現(xiàn)書籍管理系統(tǒng)

author:shuaibing.huo@gmail.com

讓客戶滿意是我們工作的目標(biāo),不斷超越客戶的期望值來自于我們對這個行業(yè)的熱愛。我們立志把好的技術(shù)通過有效、簡單的方式提供給客戶,將通過不懈努力成為客戶在信息化領(lǐng)域值得信任、有價(jià)值的長期合作伙伴,公司提供的服務(wù)項(xiàng)目有:空間域名、網(wǎng)絡(luò)空間、營銷軟件、網(wǎng)站建設(shè)、尚志網(wǎng)站維護(hù)、網(wǎng)站推廣。

package main
import (
    "fmt"
    "os"
)
//使用函數(shù)實(shí)現(xiàn)一個簡單的圖書管理系統(tǒng)
//每本書有書名、作者、價(jià)格、上架信息
//用戶可以在控制臺添加書籍、修改書籍信息、打印所有書籍列表

//需求分析
//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("請根據(jù)提示輸入相關(guān)內(nèi)容")
    fmt.Print("請輸入書名:")
    fmt.Scanln(&title)
    fmt.Print("請輸入作者:")
    fmt.Scanln(&author)
    fmt.Print("請輸入價(jià)格:")
    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. 等待用戶輸入菜單選項(xiàng)
//定義一個book指針的切片,用來存儲所有書籍
var allbooks = make([]*book,0,200)

//定義一個創(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("請根據(jù)提示輸入相關(guān)內(nèi)容")
    fmt.Print("請輸入書名:")
    fmt.Scanln(&title)
    fmt.Print("請輸入作者:")
    fmt.Scanln(&author)
    fmt.Print("請輸入價(jià)格:")
    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》這本書已經(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)
        }
    }
}

當(dāng)前題目:golang實(shí)現(xiàn)書籍管理系統(tǒng)
分享地址:http://weahome.cn/article/pjjsso.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部