- Fortran 教程
- Fortran - 主页
- Fortran - 概述
- Fortran - 环境设置
- Fortran - 基本语法
- Fortran - 数据类型
- Fortran - 变量
- Fortran - 常量
- Fortran - 运算符
- Fortran - 决策
- Fortran - 循环
- Fortran - 数字
- Fortran - 字符
- Fortran - 字符串
- Fortran - 数组
- Fortran - 动态数组
- Fortran - 派生数据类型
- Fortran - 指针
- Fortran - 基本输入输出
- Fortran - 文件输入输出
- Fortran - 过程
- Fortran - 模块
- Fortran - 内置函数
- Fortran - 数值精度
- Fortran - 程序库
- Fortran - 编程风格
- Fortran - 调试程序
- Fortran 资源
- Fortran - 快速指南
- Fortran - 有用资源
- Fortran - 讨论
Fortran - if-else if-else 构造
if 语句构造可以有一个或多个可选 else-if 构造。当 if 条件不满足时,会立即执行紧随其后的 else-if。如果 else-if 也不满足,则会执行其继任 else-if 语句(如果有),依此类推。
可选 else 放在末尾,并且会在以上任何条件都不成立时执行它。
所有 else 语句(else-if 和 else)都是可选的。
else-if 可以使用一次或多次。
else 必须始终放在构造的末尾,并且只能出现一次。
语法
if...else if...else 语句的语法为 -
[name:] if (logical expression 1) then ! block 1 else if (logical expression 2) then ! block 2 else if (logical expression 3) then ! block 3 else ! block 4 end if [name]
示例
program ifElseIfElseProg implicit none ! local variable declaration integer :: a = 100 ! check the logical condition using if statement if( a == 10 ) then ! if condition is true then print the following print*, "Value of a is 10" else if( a == 20 ) then ! if else if condition is true print*, "Value of a is 20" else if( a == 30 ) then ! if else if condition is true print*, "Value of a is 30" else ! if none of the conditions is true print*, "None of the values is matching" end if print*, "exact value of a is ", a end program ifElseIfElseProg
当编译并执行以上代码时,将生成以下结果 -
None of the values is matching exact value of a is 100
fortran_decisions.htm
广告