代码搜索:else
找到约 10,000 项符合「else」的源代码
代码结果 10,000
www.eeworm.com/read/346512/11740070
tig test9.tig
/* error : types of then - else differ */
if (5>4) then 13 else " "
www.eeworm.com/read/344877/11854973
f matrix.f
!
! ------------------------------------------------------------------
! | In the following codes, some subroutines are introduced |
! | in order to perform matrix computations.
www.eeworm.com/read/344812/11858433
m c.m
function n=mian(x);
global a;
a=x;
if (a==1)
n=0;
else
n=1;
end
www.eeworm.com/read/344812/11858437
m a.m
function n=mian(x);
global a b c;
a=x(1);
b=x(2);
c=x(3);
if (a==b==c)
n=0;
else
n=1;
end
www.eeworm.com/read/344812/11858441
m b.m
function n=mian(x);
global a b ;
a=x(1);
b=x(2);
if (a+b>1)
n=1/(a+b);
else
n=1;
end
www.eeworm.com/read/154929/11918225
m metric.m
function distance=metric(x,y)
if x==y
distance=0;
else
distance=1;
end
www.eeworm.com/read/154929/11918373
m metric.m
function distance=metric(x,y)
if x==y
distance=0;
else
distance=1;
end
www.eeworm.com/read/154929/11918420
m metric.m
function distance=metric(x,y)
if x==y
distance=0;
else
distance=1;
end