青春纸盒子

文: 芦苇

你喜欢我笑的样子

我靠上了落寞的窗子

晚风吹起了我的袖子

明月沾湿了你的眸子


转身,你走出了两个人的圈子

树影婆娑,整座院子


挽起袖子

回头,把揽你忧伤一地的影子

装进,青春,这纸盒子


更多代码请关注我的微信小程序: "ecoder"

luwei0915

导航

13_Go基础(binary)

package main

import "fmt"

func main() {
    n1 := 255

    fmt.Printf("%d\n", n1) // 255
    fmt.Printf("%b\n", n1) // 11111111
    fmt.Printf("%o\n", n1) // 377
    fmt.Printf("%x\n", n1) // ff

    fmt.Printf("%T\n", n1) // int

}

 

posted on 2021-09-30 17:09  芦苇の  阅读(26)  评论(0编辑  收藏  举报