代码搜索:while

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

代码结果 10,000
www.eeworm.com/read/340189/12176776

c 15iqck.c

#include "15ibub.c" void iqck(p,n) int n,p[]; { int m,i0,*i,s0,*s; void isplit(); i=&i0; if (n>10) { isplit(p,n,i); m=i0; iqck(p,m); s=p+(i0+1);
www.eeworm.com/read/340189/12176779

c 15rqck.c

#include "15rbub.c" void rqck(p,n) int n; double p[]; { int m,i0,*i; double *s; void rsplit(); i=&i0; if (n>10) { rsplit(p,n,i); m=i0; rqck
www.eeworm.com/read/340189/12176782

c 15chap.c

void chap(p,n) int n; char p[]; { int i,mm; char t; void csift(); mm=n/2; for (i=mm-1; i>=0; i--) csift(p,i,n-1); for (i=n-1; i>=1; i--) { t=p[0]; p
www.eeworm.com/read/340189/12176788

c 15hqck.c

#include "15hbub.c" void hqck(p,n,k,m) int n,k,m; char *p[]; { int i0,*i; void hsplit(); i=&i0; if (kn-1) m=n-1; if (m-k>10) { hsplit(p,k
www.eeworm.com/read/340186/12176916

c 12maxn.c

#include "math.h" void maxn(x,n,eps,k,js,ff) int n,k,js[]; double eps,x[],(*ff)(); { int i,j,m,l,jt,il; double y[10],b[10],p,z,t,h1,h2,f,dx; js[0]=0; jt=1; h2=0.0; while
www.eeworm.com/read/340186/12176921

c 12max1.c

#include "math.h" void max1(x,eps,k,js,f) void (*f)(); int k,js[2]; double eps,x[2]; { int i,j,m,jt; double xx,h1,h2,dx,y[10],b[10],z[2]; js[0]=0; jt=1; h2=0.0; whil
www.eeworm.com/read/340179/12177333

c 7dhrt.c

#include "math.h" int dhrt(a,b,h,eps,x,m,f) int m; double a,b,h,eps,x[],(*f)(); { int n,js; double z,y,z1,y1,z0,y0; n=0; z=a; y=(*f)(z); while ((z
www.eeworm.com/read/253867/12180518

c wordcount.c

#include "WordCount.h" ostream& operator
www.eeworm.com/read/253866/12181697

cpp list0706.cpp

// Listing 7.6 // Demonstrates skipping the body of // the while loop when the condition is false. #include int main() { int counter; std::cout
www.eeworm.com/read/253866/12181727

cpp list0702.cpp

// Listing 7.2 // Looping with while #include int main() { using namespace std; int counter = 0; // initialize the condition while(counter < 5) //