代码搜索:else
找到约 10,000 项符合「else」的源代码
代码结果 10,000
www.eeworm.com/read/125133/6032830
idel tak.idel
def 3 1 tak
{ x y z -- y x < if
x 1 - y z tak
y 1 - z x tak
z 1 - x y tak tak
else
z
then } ;
www.eeworm.com/read/125133/6032981
idel fib.idel
def 1 1 fib
{ n -- n 2 < if 1
else n 1 - fib n 2 - fib +
then } ;
www.eeworm.com/read/125133/6033005
idel tak.idel
def 3 1 tak
{ x y z -- y x < if
x 1 - y z tak
y 1 - z x tak
z 1 - x y tak tak
else
z
then } ;
www.eeworm.com/read/450748/6655351
txt input.txt
j:=k*j+m;
if x then j:=j-1;
if x then j:=j-1 else j:=j+1;
while x do j:=j+1;
j:=i*+1;
if x then;
www.eeworm.com/read/125581/14482533
pas fakultaet.pas
function fakultaet(n);
if (n > 0) then
fakultaet := (n * fakultaet((n - 1)))
else
fakultaet := 1
www.eeworm.com/read/125581/14482537
pas if.pas
function ifprobe(a,b);
if
( a =1
)then if(
b=
2)
then
www.eeworm.com/read/125581/14482554
pas fakultaet.pas
function fakultaet(n);
if (n > 0) then
fakultaet := (n * fakultaet((n - 1)))
else
fakultaet := 1
www.eeworm.com/read/125581/14482556
pas if.pas
function ifprobe(a,b);
if
( a =1
)then if(
b=
2)
then