美文网首页
022goto结构

022goto结构

作者: 哆啦A梦_ca52 | 来源:发表于2021-03-06 15:54 被阅读0次
    package main
    
    import "fmt"
    
    func main(){
        fmt.Println("日照香炉生紫烟")
        fmt.Println("遥看瀑布挂前川")
        fmt.Println("飞流直下三千尺")
        goto GAMEOVER
    
        LASTWORD:
        fmt.Println("疑是银河落九天")
        return
    
        GAMEOVER:
        fmt.Println("GAME OVER")
        goto LASTWORD
    }
    
    

    相关文章

      网友评论

          本文标题:022goto结构

          本文链接:https://www.haomeiwen.com/subject/ovocqltx.html