📜  Erlang-决策

📅  最后修改于: 2020-11-04 05:50:07             🧑  作者: Mango


决策结构要求程序员应指定一个或多个要由程序评估或测试的条件,以及确定条件为true时要执行的一个或多个语句,如果条件为true则可以选择要执行的其他语句。条件被确定为错误

以下是大多数编程语言中常见的典型决策结构的一般形式-

做决定

Erlang编程语言提供以下类型的决策声明。

Sr.No. Statement & Description
1

If statement

An if statement consists of a Boolean expression followed by one or more statements.

2

Multiple Expression

The if expression also allows for multiple expressions to be evaluated at once.

3

Nested if Statements

You can use one if or else if statement inside another if or else if statement(s).

4

Case Statements

It can be used to execute expressions based on the output of the case statement.