主页
Go
Go 逻辑运算符
demo_oper_logical3
运行 ❯
×
更改方向
保存代码
更改主题
package main import ("fmt") func main() { var x = 5 fmt.Println(!(x < 5 && x < 10)) }
true