实例 R 语言 If 语句

x
 
a <- 33
b <- 200
if (b > a) {
  print("b is greater than a")
}
                    

输出结果

[1] "b is greater than a"