代码搜索:else

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

代码结果 10,000
www.eeworm.com/read/399115/7889755

asp maillink.asp

www.eeworm.com/read/399115/7892662

asp maillink.asp

www.eeworm.com/read/197671/7979382

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/197392/8000710

asp maillink.asp

www.eeworm.com/read/197241/8010172

m jbessel.m

function y = jbessel(n,beta); if n
www.eeworm.com/read/297233/8037485

move-if-change

#!/bin/sh # Like mv $1 $2, but if the files are the same, just delete $1. # Status is 0 if $2 is changed, 1 otherwise. if test -r $2 then if cmp -s $1 $2 then echo $2 is unchanged rm -f $1 else mv -f
www.eeworm.com/read/297233/8037863

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 roland@gnu.ai.mit.edu before changing it! Copyrigh
www.eeworm.com/read/297175/8048450

mkversion

if [ ! -f .version ] then echo 1 else expr 0`cat .version` + 1 fi
www.eeworm.com/read/297087/8053496

m householder.m

function A=householder(A) [m,n]=size(A); for k=1:n x=A(k:m,k); y=x'*x; y=sqrt(y); v(k:m,k)=x; if x(1)>=0 v(k,k)=y+x(1); else v(k,k)=x(1)-y; end r=v(k:m,k)'*v(k:m,k); r=sqrt(r); v(k:m,k)=v(k:m,k)/r;
www.eeworm.com/read/196808/8059271

m testdtxy.m

function result=testdtxy(displace) for i=1:9; if i==1; result(1,1)=displace(i); else result(i,1)=displace(i*3-2); end if i==1; result(1,2)=displace(2);