package main import "fmt" func main() { // for循环输出 // 循环次数i1 < 10 for i1 := 0; i1 < 10; i1++ { fmt.Println("循环第", i1+1, "次") } }