主页
Go
Go if 语句
demo_if1
运行 ❯
×
更改方向
保存代码
更改主题
package main import ("fmt") func main() { if 20 > 18 { fmt.Println("20 大于 18") } }
20大于18