运行 ❯
获取
自己的
网站
×
更改方向
更改主题,深色/浅色
转到 Spaces
package main import ("fmt") func main() { x := 30 if x >= 10 { fmt.Println("x is larger than or equal to 10.") } else if x > 20 { fmt.Println("x is larger than 20.") } else { fmt.Println("x is less than 10.") } }
x 大于或等于 10。