代码搜索:else
找到约 10,000 项符合「else」的源代码
代码结果 10,000
www.eeworm.com/read/167442/9968762
m metric.m
function distance=metric(x,y)
if x==y
distance=0;
else
distance=1;
end
www.eeworm.com/read/362669/9987250
txt 1.txt
%{
int k;
%}
%%
[0-9]+ {
k = atoi(yytext);
if (k%7 == 0)
printf("%d", k+3);
else
printf("%d",k);
}
www.eeworm.com/read/362558/9992933
c 3.16.c
int Fib(int n)
{
int x,y,z,i;
if(n==0||n==1)
return n; /*计算 Fib (0)或Fib(1) */
else
{
x=0;
y=1; /* x= Fib (0) y= Fib (1) */
for(i=2;i
www.eeworm.com/read/166742/10002939
m metric.m
function distance=metric(x,y)
if x==y
distance=0;
else
distance=1;
end
www.eeworm.com/read/361569/10044894
c 16ibsh.c
int ibsh(p,n,a,b,m)
int n,*m;
int a,b,p[];
{ int i,j,k;
i=1; j=n;
while (i=a)&&(p[k-1]
www.eeworm.com/read/361386/10055371
tig test9.tig
/* error : types of then - else differ */
if (5>4) then 13 else " "
www.eeworm.com/read/361386/10055493
tig test9.tig
/* error : types of then - else differ */
if (5>4) then 13 else " "
www.eeworm.com/read/164109/10128613
m metric.m
function distance=metric(x,y)
if x==y
distance=0;
else
distance=1;
end