代码搜索:while
找到约 10,000 项符合「while」的源代码
代码结果 10,000
www.eeworm.com/read/323775/13320526
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/137335/13328170
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/137335/13328181
c 16rsech.c
int rsech(p,k,m,a,b)
STRU p[];
double a,b;
int k,m;
{ int i;
i=k;
while ((im) return(-1);
return(i);
}
www.eeworm.com/read/137335/13328224
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/137335/13328265
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/137335/13328278
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/137335/13329073
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/323663/13329388
c c2.c
#include
void main(void)
{
while(1)
{
if(P1_4==0)
{
P1_0=0;
}
else
{
P1_0=1;
}
if(P1_5==0)
www.eeworm.com/read/321496/13403971
readme
This is a set of shell scripts for testing Ethernet bridging.
mkbr makes a simple bridge and clones the ip address.
rmbr removes bridge
The functional test needs two ethernets (eth0, eth1,
and the d
www.eeworm.com/read/320921/13415996
cpp encoder.cpp
//加密
int encoder(char pp,int e,int n) //加密
{
int r=1;
e=e+1;
while(e!=1)
{
r=r*pp;
r=r%n;
e--;
}
return r;
}