代码搜索:else
找到约 10,000 项符合「else」的源代码
代码结果 10,000
www.eeworm.com/read/162614/5528333
c 941113-1.c
typedef void foo (void);
f (x)
{
if (x)
{
const foo* v;
(*v)();
}
else
g (0);
}
www.eeworm.com/read/162614/5528417
c 930503-1.c
f (const char *s, char *d, unsigned l)
{
if (0)
while (1);
else
while (--l >= 0)
*d++ = *s++;
}
www.eeworm.com/read/475913/6769406
t expr3.t
{
int x; int y; bool r;
r = !(x < y);
r = !!(x == y);
if( !(x > y) ) r = true;
else r = false;
if( !!(x != y) ) r = true;
else r = false;
}
www.eeworm.com/read/474040/6828941
m metric.m
function distance=metric(x,y)
if x==y
distance=0;
else
distance=1;
end
www.eeworm.com/read/471892/6883973
m test_error_rate.m
count=0;
for i=1:8192
if test(i)~=0 count=count+1;
else count=0;
end
end
www.eeworm.com/read/193277/8242761
m extsubsref.m
function z=ihatethis(x,i,j);
if nargin < 3
z = x(i);
else
z=x(i,j);
end
www.eeworm.com/read/173140/9670946
m metric.m
function distance=metric(x,y)
if x==y
distance=0;
else
distance=1;
end
www.eeworm.com/read/367160/9778468
f slatme.f
SUBROUTINE SLATME( N, DIST, ISEED, D, MODE, COND, DMAX, EI, RSIGN,
$ UPPER, SIM, DS, MODES, CONDS, KL, KU, ANORM, A,
$ LDA, WORK, INFO )
*
* --