Fortran 条件语句

指定一个或多个要由程序评估或测试的条件,如果条件被确定为 true(真),则指定要执行的一条或多条语句,如果条件确定为 false(假),则指定其他要执行的语句。

以下是大多数编程语言中典型条件语句的一般形式:

Fortran 提供了以下类型的条件语句:

序号语句 & 描述
1If… then

if… then… end if 语句由一个逻辑表达式和一个或多个语句组成。

2If… then…else

if… then 语句后面可以跟一个可选的 else 语句, 当逻辑表达式为 false 时执行。

3if…else if…else

else if。如果 if 条件失败,则执行紧随其后的 else if。当 else if 也失败时,执行其后续 else if 语句(如果有的话),依此类推。

4nested if

可以在另一个 ifelse if 语句中使用一个 if or else if 语句。

5select case

select case 语句允许测试变量是否与值列表相等。

6nested select case

您可以在另一个 select case 语句中使用一个 select case 语句。

分类导航