Julia 中的 else 关键字
Julia 中的关键字是对编译器具有特定含义和操作的保留字。这些关键字不能用作变量名,这样做会停止执行过程并引发错误。
Julia 中的“else”关键字用于在“if”条件为假时执行代码块。如果条件为真,则执行 if 语句后面的代码,否则执行 else 语句的主体。
句法:
if condition
statement
else
statement
end
流程图:
例子:
# Julia program to illustrate
# the use of 'if' keyword
# function definition
function check_if(x)
# if keyword
if x > 10
println(x, " is greater than 10")
else
println(x, " is smaller than 10")
end
println("This is not in if")
end
# function call
check_if(15)
输出:
5 is smaller than 10
This is not in if
'else'
关键字也可以与'if'
关键字一起使用以生成'if-elseif-else'阶梯。
例子:
# Julia program to illustrate
# if-elseif-else ladder
i = 20
if (i == 10)
println("Value of i is 10")
elseif(i == 15)
println("Value of i is 15")
elseif(i == 20)
println("Value of i is 20")
else
println("Value of i is not defined")
end
输出:
Value of i is 20