📜  F#-决策

📅  最后修改于: 2020-11-21 06:37:00             🧑  作者: Mango


决策结构要求程序员指定一个或多个要由程序评估或测试的条件。如果确定条件为真,则应与要执行的一个或多个语句一起;如果确定条件为假,则应与要执行的其他语句一起。

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

做决定

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

Sr.No Statement & Description
1

if /then statement

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

2

if/then/ else statement

An if/then statement can be followed by an optional else statement, which executes when the Boolean expression is false.

3

if/then/elif/else statement

An if/then/elif/else statement allows you to have multiple else branches.

4

nested if statements

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