代码搜索:else
找到约 10,000 项符合「else」的源代码
代码结果 10,000
www.eeworm.com/read/479183/6700387
m printlcs.m
function PrintLCS(b,v,i,j)
if i==0|j==0
return;
end
if b(i,j)=='↖'
PrintLCS(b,v,i-1,j-1);m(i)=v(i);
else if b(i,j)=='↑'
PrintLCS(b,v,i-1,j);
else
PrintLCS(b,
www.eeworm.com/read/476907/6754283
m metric.m
function distance=metric(x,y)
if x==y
distance=0;
else
distance=1;
end
www.eeworm.com/read/158473/11612549
c test.c
main()
{ int a,b,c;
scanf("%d%d",&a,&b);
if(a>b)
c=a;
else
c=b;
printf("c=%d",c);
}#
www.eeworm.com/read/158463/11613111
m metric.m
function distance=metric(x,y)
if x==y
distance=0;
else
distance=1;
end
www.eeworm.com/read/347945/11624521
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/157938/11654594
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/157453/11704429
h dup.h
while (p) {
q = p;
if (e data) p = p->LeftChild;
else p = p->RightChild;
}