Go 嵌套 if 语句

嵌套 if 语句

您可以在 if 语句中包含 if 语句,这称为嵌套 if。

语法

if condition1 {
   // 条件1为真时执行的代码
  if condition2 {
     // 如果条件1和条件2都执行的代码 are true
  }
}

实例

这个例子展示了如何使用嵌套的 if 语句:

package main
import ("fmt")

func main() {
  num := 20
  if num >= 10 {
    fmt.Println("Num is more than 10.")
    if num > 15 {
      fmt.Println("Num is also more than 15.")
     }
  } else {
    fmt.Println("Num is less than 10.")
  }
}

结果:

Num is more than 10.
Num is also more than 15.
亲自试一试 »