位置:首页 > 高级语言 > 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表示false,1表示true:

a and b = 0
a or b = 1
a xor b = 1
a xor c = 0
not(a) = 0
not(b) = 1

注: 其他的Euphoria数据类型例如Euphoria支持所有上述操作序列,原子和对象。