代码搜索:LOGICAL
找到约 6,118 项符合「LOGICAL」的源代码
代码结果 6,118
www.eeworm.com/read/167987/9942668
logical
#!/bin/csh -f
#
# Sript name: logical
# Example: 9.78
#
set x = 1
set y = 2
set z = 3
if ( ( "$x" && "$y" ) || ! "$z" ) then
# Note: grouping and parentheses
echo TRUE
else
echo FALSE
www.eeworm.com/read/116739/14956384
logical
#!/bin/csh -f
#
# Sript name: logical
# Example: 9.78
#
set x = 1
set y = 2
set z = 3
if ( ( "$x" && "$y" ) || ! "$z" ) then
# Note: grouping and parentheses
echo TRUE
else
echo FALSE
www.eeworm.com/read/35675/1059760
logical
#!/bin/csh -f
# Scriptname: logical
set x = 1
set y = 2
set z = 3
if ( ( "$x" && "$y" ) || ! "$z" ) then
# Note: grouping and parentheses
echo TRUE
else
echo FALSE
endif
www.eeworm.com/read/239312/4602521
logical
#!/bin/csh -f
# Scriptname: logical
set x = 1
set y = 2
set z = 3
if ( ( "$x" && "$y" ) || ! "$z" ) then
# Note: grouping and parentheses
echo TRUE
else
echo FALSE
endif
www.eeworm.com/read/407756/2258983
logical
#!/bin/csh -f
# Scriptname: logical
set x = 1
set y = 2
set z = 3
if ( ( "$x" && "$y" ) || ! "$z" ) then
# Note: grouping and parentheses
echo TRUE
else
echo FALSE
endif
www.eeworm.com/read/283498/9016821
exe logical.exe
www.eeworm.com/read/283498/9016847
exe logical.exe
www.eeworm.com/read/283498/9016850
opt logical.opt
[Compiler]
A=1
B=0
D=1
F=0
I=1
K=1
L=1
P=1
Q=0
R=0
S=1
T=0
U=1
V=1
W=0
X=1
Y=1
[Linker]
MapFile=0
LinkBuffer=0
DebugInfo=0
OptimizeExe=0
StackSize=16384
HeapSize=8192
[Dir
www.eeworm.com/read/283498/9016854
dpr logical.dpr
program Logical;
uses
Forms,
Logicalu in 'LOGICALU.PAS' {LogicalOps};
{$R *.RES}
begin
Application.Title := 'Hex Conversion';
Application.CreateForm(TLogicalOps, LogicalOps);
A