- 雷克斯教程
- 雷克斯 - 主页
- Rexx - 概述
- Rexx - 环境
- Rexx - 安装
- Rexx - 插件安装
- Rexx - 基本语法
- Rexx - 数据类型
- Rexx - 变量
- Rexx - 操作员
- Rexx - 数组
- Rexx - 循环
- Rexx - 决策
- Rexx - 数字
- Rexx - 弦乐
- Rexx - 功能
- Rexx - 堆栈
- Rexx - 文件 I/O
- Rexx - 文件函数
- Rexx - 子程序
- Rexx - 内置函数
- Rexx - 系统命令
- 雷克斯-XML
- 雷克斯 - 里贾纳
- Rexx - 解析
- Rexx - 信号
- Rexx - 调试
- Rexx - 错误处理
- Rexx - 面向对象
- Rexx - 便携性
- Rexx - 扩展功能
- Rexx - 说明
- Rexx - 实施
- 雷克斯 - Netrexx
- 雷克斯 - Brexx
- Rexx - 数据库
- 手持式和嵌入式
- Rexx - 性能
- Rexx - 最佳编程实践
- Rexx - 图形用户界面
- 雷克斯 - 雷金纳德
- Rexx - 网络编程
- 雷克斯有用资源
- Rexx - 快速指南
- Rexx - 有用的资源
- Rexx - 讨论
Rexx - 决策
决策结构要求程序员指定一个或多个由程序评估或测试的条件。
下图显示了大多数编程语言中典型决策结构的一般形式。
如果条件被确定为true ,则有一个或多个语句要执行,并且可选地,如果条件被确定为false ,则要执行其他语句。
让我们看看 Rexx 中可用的各种决策语句。
先生。 | 声明及说明 |
---|---|
1 | 如果语句
第一个决策语句是if语句。if语句由一个布尔表达式后跟一个或多个语句组成。 |
2 | if-else 语句
下一个决策语句是 if-else 语句。if语句后面可以跟一个可选的 else 语句,该语句在布尔表达式为 false 时执行。 |
嵌套 If 语句
有时需要将多个 if 语句相互嵌入,这在其他编程语言中是可能的。在 Rexx 中这也是可能的。
句法
if (condition1) then do #statement1 end else if (condition2) then do #statement2 end
流程图
嵌套if语句的流程图如下 -
让我们以嵌套if语句为例-
例子
/* Main program */ i = 50 if (i < 10) then do say "i is less than 10" end else if (i < 7) then do say "i is less than 7" end else do say "i is greater than 10" end
上述程序的输出将是 -
i is greater than 10
选择语句
Rexx 提供 select 语句,可用于根据 select 语句的输出执行表达式。
句法
该声明的一般形式是 -
select when (condition#1) then statement#1 when (condition#2) then statement#2 otherwise defaultstatement end
该声明的一般工作原理如下 -
select 语句有一系列when 语句来评估不同的条件。
每个when 子句都有一个不同的条件,需要对其进行评估并执行后续语句。
else 语句用于在前面的 when 条件不计算为 true时运行任何默认语句。
流程图
select语句的流程图如下
以下程序是 Rexx 中 case 语句的示例。
例子
/* Main program */ i = 50 select when(i <= 5) then say "i is less than 5" when(i <= 10) then say "i is less than 10" otherwise say "i is greater than 10" end
上述程序的输出将是 -
i is greater than 10