- Euphoria 教程
- Euphoria - 主页
- Euphoria - 概述
- Euphoria - 环境
- Euphoria - 基本语法
- Euphoria - 变量
- Euphoria - 常量
- Euphoria - 数据类型
- Euphoria - 运算符
- Euphoria - 分支
- Euphoria - 循环类型
- Euphoria - 流控制
- Euphoria - 短路
- Euphoria - 序列
- Euphoria - 日期和时间
- Euphoria - 过程
- Euphoria - 函数
- Euphoria - 文件 I/O
- Euphoria 有用资源
- Euphoria - 快速指南
- Euphoria - 库例程
- Euphoria - 有用资源
- Euphoria - 讨论
Euphoria - 逻辑运算符
以下简单的示例程序演示了逻辑运算符。将 Euphoria 程序复制并粘贴到 test.ex 文件中,然后运行该程序 -
#!/home/euphoria-4.0b2/bin/eui integer a = 1 integer b = 0 integer c = 1 printf(1, "a and b = %d\n", (a and b) ) printf(1, "a or b = %d\n", (a or b) ) printf(1, "a xor b = %d\n", (a xor b) ) printf(1, "a xor c = %d\n", (a xor c) ) printf(1, "not(a) = %d\n", not(a) ) printf(1, "not(b) = %d\n", not(b) )
这将产生以下结果。此处 0 表示假,1 表示真。
a and b = 0 a or b = 1 a xor b = 1 a xor c = 0 not(a) = 0 not(b) = 1
euphoria_operators.htm
广告