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