📜  R If语句

📅  最后修改于: 2021-01-08 09:29:36             🧑  作者: Mango

R if语句

if语句由布尔表达式组成,后跟一个或多个语句。 if语句是最简单的决策语句,可帮助我们根据条件做出决定。

if语句是一个条件编程语句,它执行函数并在证明为真时显示信息。

仅当布尔表达式的值为真时,才会执行if语句中的代码块。如果该语句的计算结果为false,则将运行条件之后提到的代码。

R中if语句的语法如下:

if(boolean_expression) {
   // If the boolean expression is true, then statement(s) will be executed. 
}

流程图

让我们看一些示例,以了解语句如何工作以及如何在R中执行特定任务。

例子1

x <-24L
y <- "shubham"
if(is.integer(x))
{
    print("x is an Integer")
}

输出:

例子2

x <-20
y<-24
count=0
if(x

输出:

例子3

x <-1
y<-24
count=0
while(x

输出:

例子4

x <-24
if(x%%2==0){
    cat(x," is an even number")
}
if(x%%2!=0){
    cat(x," is an odd number")
}

输出:

例子5

year
1 = 2011
if(year1 %% 4 == 0) {
 if(year1 %% 100 == 0) { 
     if(year1 %% 400 == 0) { 
         cat(year,"is a leap year") 
        } else {
         cat(year,"is not a leap year") 
        }
    } else {
     cat(year,"is a leap year") 
    }
} else {
 cat(year,"is not a leap year") 
}

输出: