R 嵌套 If
嵌套 If 语句
你也可以在 if
语句中嵌套 if
语句,这叫做嵌套 if
语句。
示例
x <- 41
if (x > 10) {
print("大于十")
if (x > 20) {
print("并且也大于 20!")
} else {
print("但不大于 20。")
}
} else {
print("小于 10。")
}
自己试试 »
你也可以在 if
语句中嵌套 if
语句,这叫做嵌套 if
语句。
x <- 41
if (x > 10) {
print("大于十")
if (x > 20) {
print("并且也大于 20!")
} else {
print("但不大于 20。")
}
} else {
print("小于 10。")
}
自己试试 »
If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]
If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]