代码搜索:while

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

代码结果 10,000
www.eeworm.com/read/485090/6563920

c cprogram.c

int x,y,z; main() { x=3; y=17; while ( 1 ) { z=x+y; } // 在此加软件断点 }
www.eeworm.com/read/477921/6726132

m m_exam6.m

% example 6 num=0; EPS=1; while (1+EPS)>1 EPS=EPS/2; num=num+1; end disp(num); EPS=2*EPS disp(EPS);
www.eeworm.com/read/263698/11346481

c pcbub.c

void pcbub(p,n) int n; char p[]; { int m,k,j,i; char d; k=0; m=n-1; while (k
www.eeworm.com/read/347738/11639372

c 3_3_3.c

//计算自然数1-100的累加和 main () { int s,i; s=0; i=1; do { s=s+i; i++; } while (i
www.eeworm.com/read/157814/11661874

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/260526/11721725

txt in.txt

main() { a=10; if(a==b) {a=b-c;} while(c>d) {a=b;} }
www.eeworm.com/read/346761/11724204

c 123.c

#include void main() { while(1) { P0=P1; } }
www.eeworm.com/read/346512/11740564

tig test10.tig

/* error : body of while not unit */ while(10 > 5) do 5+6
www.eeworm.com/read/346512/11740585

tig test20.tig

/* error: undeclared variable i */ while 10 > 5 do (i+1;())
www.eeworm.com/read/345247/11824021

c ex7.c

#include main() { int x, y; x = 2; y = 3; x = 1; printf("\n%3d",x); x