代码搜索:else

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

代码结果 10,000
www.eeworm.com/read/234146/14120976

c 12.c

main() { int c=0; if(c++) puts(">0"); else puts("=0"); }
www.eeworm.com/read/131795/14125896

dat vb_code27.dat

If...Then...Else语句 根据表达式的值有条件地执行一组语句。
www.eeworm.com/read/233144/14166932

m fun2.m

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

err 程序1.err

第 7 行发生错误: 缺少 IF | ELSE | ENDIF 语句。
www.eeworm.com/read/216648/15000085

txt 2.txt

i main ( NUL ) NUL { NUL e for ( NUL i i = NUL n 1 ; NUL i i < NUL n 9 ; NUL i i u NUL ) NUL { NUL i i u NUL ; NUL } NUL 5 while ( NUL i s w NUL n 6 ) NUL { NUL i s = NUL
www.eeworm.com/read/214827/15086498

m fff.m

function y=fff(x) if x==0 y=1; else y=x*fff(x-1); end
www.eeworm.com/read/210633/15194992

m zjadms.m

function [x2,y2]=zjadms(a,b,c,d,u,h,n,x0) x=x0; y=c*x; for i=1:n if (i==1) x(:,i+1)=x(:,i)+h*(a*x(:,i)+b*u); else x(:,i+1)=x(:,i)+h/2*(3*(a*x(:,i)+b*u)+(a*x(:,i-1)+b*u))
www.eeworm.com/read/207746/15263109

m dissim.m

function dissim=dissim(a,x) if a==x dissim=1; else dissim=0; end
www.eeworm.com/read/206864/15287846

m mins.m

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

svn-base 02test.svn-base

if cond { print "a" } else { say "b" }