代码搜索:while
找到约 10,000 项符合「while」的源代码
代码结果 10,000
www.eeworm.com/read/458870/7286348
c 16ibkey.c
int ibkey(p,n,a,b,m)
int n,*m;
BISERCH *p[];
int a,b;
{ int i,j,k;
i=1; j=n;
while (i=a)&&((*p[k-1]).KEY
www.eeworm.com/read/458870/7286364
c 16csech.c
int csech(p,k,m,a,b)
STRU p[];
char a,b;
int k,m;
{ int i;
i=k;
while ((im) return(-1);
return(i);
}
www.eeworm.com/read/458870/7286368
c 3rabs.c
void rabs(a,b,r,p,n)
int a,b,*r,n,p[];
{ int k,l,m,i;
k=b-a+1; l=2;
while (l
www.eeworm.com/read/458870/7286639
c 3rabs.c
void rabs(a,b,r,p,n)
int a,b,*r,n,p[];
{ int k,l,m,i;
k=b-a+1; l=2;
while (l
www.eeworm.com/read/458870/7286651
c 3rabs.c
void rabs(a,b,r,p,n)
int a,b,*r,n,p[];
{ int k,l,m,i;
k=b-a+1; l=2;
while (l
www.eeworm.com/read/458493/7295528
m demoloop.m
% demoLoop Script file to demonstrate for and while loops
fprintf('\nSum elements of a vector\n');
x = 1:5; % create a row vector
sumx = 0; % initialize the
www.eeworm.com/read/458488/7295953
m demoloop.m
% demoLoop Script file to demonstrate for and while loops
fprintf('\nSum elements of a vector\n');
x = 1:5; % create a row vector
sumx = 0; % initialize the
www.eeworm.com/read/456844/7338885
m select.m
function y=select(p,fit)
if p==0
y=1;return;
end
x=p*sum(fit);
y=0;
s=0;
while x>s
y=y+1;
s=sum(fit(1:y));
end
www.eeworm.com/read/454587/7387137
txt test.txt
VAR
X,Y,Z,A,B,C,D:INTEGER;
BEGIN
WHILE (A+1)>(B+2) DO
IF C>D THEN
X:=Y+Z
ELSE
Y:=X+Z
END.