- 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 - 如果 - 那么 - 别的构造
如果…那么语句后可以接一个可选的else 语句,当逻辑表达式为假时执行此语句。
语法
>如果…那么…else 语句的基本语法是 -
if (logical expression) then statement(s) else other_statement(s) end if
但是,如果您给if 块命名,那么命名的if-else 语句的语法将如下所示 -
[name:] if (logical expression) then ! various statements . . . else !other statement(s) . . . end if [name]
如果逻辑表达式求值为true,那么if…then 语句中的代码块将被执行,否则else 块中的代码块将被执行。
流程图
示例
program ifElseProg implicit none ! local variable declaration integer :: a = 100 ! check the logical condition using if statement if (a < 20 ) then ! if condition is true then print the following print*, "a is less than 20" else print*, "a is not less than 20" end if print*, "value of a is ", a end program ifElseProg
编译并执行以上代码时,会产生以下结果 -
a is not less than 20 value of a is 100
fortran_decisions.htm
广告