主页
Go
Go 条件语句
demo_conditions3
运行 ❯
×
更改方向
保存代码
更改主题
package main import ("fmt") func main() { x := 10 y := 5 z := 2 fmt.Println((x > y) && (y > z)) }
true