代码搜索:else
找到约 10,000 项符合「else」的源代码
代码结果 10,000
www.eeworm.com/read/322321/13382584
pl test2.pl
var a,b,c;
begin
read(a,b,c);
if a>0 then write(b) else write(c);
write(a,b,c);
end.
www.eeworm.com/read/320570/13422803
c 16rbsh.c
int rbsh(p,n,a,b,m)
int n,*m;
double a,b,p[];
{ int i,j,k;
i=1; j=n;
while (i=a)&&(p[k-1]
www.eeworm.com/read/319404/13452674
m mytestnio.m
function [y1,y2]=mytestnio(x1,x2)
if nargin==1
y1=x1;
if nargout==2
y2=x1;
end
else
if nargout==1
y1=x1+x2;
else
y1=x1;
y2=x2;
end
www.eeworm.com/read/318926/13466297
c 16rbsh.c
int rbsh(p,n,a,b,m)
int n,*m;
double a,b,p[];
{ int i,j,k;
i=1; j=n;
while (i=a)&&(p[k-1]
www.eeworm.com/read/318604/13475117
c getopt.c
/* Getopt for GNU.
NOTE: getopt is now part of the C library, so if you don't know what
"Keep this file name-space clean" means, talk to drepper@gnu.org
before changing it!
Copyright (C)
www.eeworm.com/read/316047/13531267
m my_fibo.m
function a=my_fibo(k)
if k==1 | k==2, a=1;
else, a=my_fibo(k-1)+my_fibo(k-2); end
www.eeworm.com/read/314719/13560289
pl0 e02.pl0
var d,b,c;
begin
read(d);
read(b);
if db then
write(0)
else
write(1)
end.
www.eeworm.com/read/314719/13560298
pl0 neq1.pl0
var i,j;
begin
read(i);
read(j);
if ij then
write(1)
else
write(0)
end.