代码搜索:while
找到约 10,000 项符合「while」的源代码
代码结果 10,000
www.eeworm.com/read/361569/10044849
c 16isech.c
int isech(p,k,m,a,b)
STRU p[];
int a,b;
int k,m;
{ int i;
i=k;
while ((im) return(-1);
return(i);
}
www.eeworm.com/read/361569/10044861
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/361569/10045340
c 15cbub.c
void cbub(p,n)
int n;
char p[];
{ int m,k,j,i;
char d;
k=0; m=n-1;
while (k
www.eeworm.com/read/361569/10045371
c 15rbub.c
void rbub(p,n)
int n;
double p[];
{ int m,k,j,i;
double d;
k=0; m=n-1;
while (k
www.eeworm.com/read/361386/10055456
tig test20.tig
/* error: undeclared variable i */
while 10 > 5 do (i+1;())
www.eeworm.com/read/361386/10055560
tig test10.tig
/* error : body of while not unit */
while(10 > 5) do 5+6
www.eeworm.com/read/361386/10055572
tig test20.tig
/* error: undeclared variable i */
while 10 > 5 do (i+1;())
www.eeworm.com/read/360910/10072273
c text3.c
#include
sbit P0_0=P0^0;
sbit P1_7=P1^7;
main()
{while(1)
{
if (P0_0==0)
P1_7==1;
}
}