R 嵌套 If


嵌套 If 语句

您还可以拥有if里面的陈述if语句,这称为嵌套的if声明。

示例

x <- 41

if (x > 10) {
  print("Above ten")
  if (x > 20) {
    print("and also above 20!")
  } else {
    print("but not above 20.")
  }
} else {
  print("below 10.")
}
亲自试一试 »