代码搜索:while

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

代码结果 10,000
www.eeworm.com/read/312908/13601798

c break_test.c

void main() { int i; while( 1 ) { if( i ) continue; break; } }
www.eeworm.com/read/311492/13629928

c break_test.c

void main() { int i; while( 1 ) { if( i ) continue; break; } }
www.eeworm.com/read/308602/13699169

m e0323.m

%1 a(1)=1;a(2)=1;i=2; while a(i)=10000 a(i), break
www.eeworm.com/read/303498/13814510

m e0323.m

%1 a(1)=1;a(2)=1;i=2; while a(i)=10000 a(i), break
www.eeworm.com/read/152092/5676027

sh repeat.sh

while true; do ./r2.sh ; sleep 1; done
www.eeworm.com/read/147331/5732263

c mulsi3.c

long __mulsi3(unsigned long a, unsigned long b) { long res = 0; while (a) { if (a & 1) { res += b; } b =1; } return res; }
www.eeworm.com/read/146084/5740108

spl sqrt.spl

int val; read val; int sqrt; sqrt = 1; while (sqrt * sqrt
www.eeworm.com/read/140122/5795026

sh repeat.sh

while true; do ./r2.sh ; sleep 1; done
www.eeworm.com/read/126430/6016846

c piksrt.c

void piksrt(n,arr) float arr[]; int n; { int i,j; float a; for (j=2;j 0 && arr[i] > a) { arr[i+1]=arr[i]; i--; } arr[i+1]=a; }
www.eeworm.com/read/126430/6017458

c piksrt.c

void piksrt(int n, float arr[]) { int i,j; float a; for (j=2;j 0 && arr[i] > a) { arr[i+1]=arr[i]; i--; } arr[i+1]=a; } }