代码搜索:else

找到约 10,000 项符合「else」的源代码

代码结果 10,000
www.eeworm.com/read/145241/12743912

txt ch2_1.txt

int sxbcr(int i,int x,int v[],int *p) { int j,n; n=*p; if((in+1)) return (0); else { for(j=n;n>=i;j--) v[j]=v[j-1]; v[j]=x; *p=++n
www.eeworm.com/read/145241/12743929

txt ch2_2.txt

int sxbsc(int i,int v[],int *p) { int j,n; n=*p; if((in)) return (0); else { for(j=i;j
www.eeworm.com/read/141810/12983782

txt a.txt

main() {int a; int b,c; a=2;b=1;c=3; if(a>b) if(a>c) put(a); else put(c); else if(b>c) put(b); else put(c); }
www.eeworm.com/read/328087/13046864

m fibfun.m

function f=fibfun(n) if n>2 f=fibfun(n-1)+fibfun(n-2); else f=1; end
www.eeworm.com/read/309538/13669307

m mins.m

function y=mins(x) a=x(1); b=x(2); c=x(3); if a
www.eeworm.com/read/131315/5935409

awk swaplns.awk

{ if ((getline tmp) > 0) { print tmp print } else print }
www.eeworm.com/read/494451/6376601

txt 2.txt

IF a
www.eeworm.com/read/493860/6391613

m fibfun.m

function f=fibfun(n) if n>2 f=fibfun(n-1)+fibfun(n-2); else f=1; end
www.eeworm.com/read/483244/6601548

m fun2.m

function f=fun2(x) if x>1 f=x^2+1 else if x
www.eeworm.com/read/483253/6602360

m sgn.m

function f=sgn(B) % if x=0 then f=1 if B