猿问

我如何在 Go 中打印 hello world 100 次?

所以到目前为止我已经有了这个,但我不确定要添加什么才能使它打印 Hello world 100 次......有什么想法吗?


package main


import "fmt"


func main() {

   fmt.Println("Hello world")

}


狐的传说
浏览 257回答 2
2回答

料青山看我应如是

你绝对应该使用strings.Repeat:package mainimport (    "fmt"    "strings")func main() {    fmt.Print(strings.Repeat("Hello world\n", 100))}

慕勒3428872

这将类似于(假设其他代码是正确的):package mainimport "fmt"func main() {&nbsp; &nbsp; for i := 0; i < 100; i++ {&nbsp; &nbsp; &nbsp; &nbsp; fmt.Println("Hello world")&nbsp; &nbsp; }}
随时随地看视频慕课网APP

相关分类

Go
我要回答