代码搜索:else

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

代码结果 10,000
www.eeworm.com/read/119084/14839897

select

if test "$1" = "on" then echo "$2" else echo "$3" fi exit 0
www.eeworm.com/read/119084/14839913

select1

if test "$1" = "$2" then echo "$3" else echo "$4" fi exit 0
www.eeworm.com/read/118454/14869503

err test_if.err

第 12 行发生错误: 缺少 IF | ELSE | ENDIF 语句。
www.eeworm.com/read/218393/14922778

txt true.txt

while (a>b) do begin if m>=n then a:=a+1 else while k=h do x:=x+2; m:=n+x*(m+y) end#
www.eeworm.com/read/218393/14922809

txt false.txt

begin a:=a+b*c; while a
www.eeworm.com/read/116048/14991496

asp etest.asp

if (e$ == '') print 'e$ is nothing' else print 'e$ is something' endif
www.eeworm.com/read/216590/15002344

txt test.txt

void main() { int a1,b1,c; while( a1>b1) c=a1; else c=b1; }
www.eeworm.com/read/216045/15028666

m metric.m

function distance=metric(x,y) if x==y distance=0; else distance=1; end
www.eeworm.com/read/215900/15034663

m factor.m

function f=factor(n) if n
www.eeworm.com/read/215057/15076177

m conver.m

function y=conver(u,n) %this function convert 1/0 into -1/1 m=2^n-1; for i=1:m if u(i)>0 y(i)=-1; else y(i)=1; end; end;