代码搜索:while
找到约 10,000 项符合「while」的源代码
代码结果 10,000
www.eeworm.com/read/293555/7128997
c ex7.c
#include
main() {
int x, y;
x = 2; y = 3;
x = 1; printf("\n%3d",x);
x
www.eeworm.com/read/293555/7129002
c ex1.c
#include
main(){
int x, y, z;
x = y = 8; z = ++x;
printf("\n %d %d %d",y,z,x);
x = y = 8; z = x++;
printf("\n %d %d %d",y,z,x);
x = y
www.eeworm.com/read/463079/7188660
txt test.txt
{
int i; int j;
double v;
while( true ){
do i = i + 1;
if( i >= j )
break;
}
}
www.eeworm.com/read/462731/7197362
txt ch8_7.txt
int sift(JD r[],int k,int m)
{ int i,j;
JD x;
i=k; x=r[i]; j=2*i;
while(jr[j].key)
{ r[i]=r[j];
i=j;
www.eeworm.com/read/461115/7233461
txt token.txt
main if else int return void while
= + - * / < >= !=
, ; : { } [ ] ( )
www.eeworm.com/read/458870/7286328
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/458870/7286334
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/458870/7286593
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