主页
Go
Go For 循环
demo_for1
运行 ❯
×
更改方向
保存代码
更改主题
package main import ("fmt") func main() { for i:=0; i < 5; i++ { fmt.Println(i) } }
0
1
2
3
4