在R語言中,可以使用if語句進行條件判斷,使用for循環、while循環、repeat循環等語句進行循環控制。
x <- 10
if (x > 5) {
print("x大于5")
} else {
print("x小于等于5")
}
for (i in 1:5) {
print(i)
}
i <- 1
while (i <= 5) {
print(i)
i <- i + 1
}
i <- 1
repeat {
print(i)
i <- i + 1
if (i > 5) {
break
}
}