代码搜索:while

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

代码结果 10,000
www.eeworm.com/read/444299/7614355

txt round-robin.txt

#include int board[16][16]; void exchange(int begin,int m); void table(int k);void main() { int n=16; std::ofstream to("output.txt"); for(int i=0;i
www.eeworm.com/read/444277/7614764

c bo4-3.c

/* bo4-3.c 串采用块链存储结构(由c4-3.h定义)的基本操作(16个) */ void InitString(LString *T) { /* 初始化(产生空串)字符串T。另加 */ (*T).curlen=0; (*T).head=NULL; (*T).tail=NULL; } Status StrAssign(LString *T,ch
www.eeworm.com/read/444021/7619192

cpp 500.cpp

#include using namespace std; int main() { long i,j,c,len,temp=0; int n=1; cout
www.eeworm.com/read/444021/7619200

cpp 1664.cpp

/*分苹果 */ #include "iostream" using namespace std; int f(int m,int n) { int s; if(m==0||n==1) s=1; else if(m=n) s=f(m,n-1)+f(m-n,n); return s;
www.eeworm.com/read/444021/7619260

cpp 3254.cpp

#include using namespace std; int main() { int n,p,m; while(cin>>n>>p>>m) { if(m==0&&n==0&&p==0) break; int tag[300]={0},i; int stp,temp; temp=n; w
www.eeworm.com/read/443686/7628349

cpp sitemapconvert.cpp

//: C01:SiteMapConvert.cpp // From Thinking in C++, 2nd Edition // Available at http://www.BruceEckel.com // (c) Bruce Eckel 2000 // Copyright notice in Copyright.txt // Using strings to create a
www.eeworm.com/read/443686/7628474

cpp strfile.cpp

//: C02:Strfile.cpp // From Thinking in C++, 2nd Edition // Available at http://www.BruceEckel.com // (c) Bruce Eckel 2000 // Copyright notice in Copyright.txt // Stream I/O with files // The di
www.eeworm.com/read/443686/7628542

cpp stack3.cpp

//: C04:Stack3.cpp // From Thinking in C++, 2nd Edition // Available at http://www.BruceEckel.com // (c) Bruce Eckel 2000 // Copyright notice in Copyright.txt // Using a vector as a stack; modifi
www.eeworm.com/read/443686/7628572

h applymember.h

//: C03:applyMember.h // From Thinking in C++, 2nd Edition // Available at http://www.BruceEckel.com // (c) Bruce Eckel 2000 // Copyright notice in Copyright.txt // applySequence.h modified to us
www.eeworm.com/read/443518/7631580

c xval-prep.c

/*************************************************************************/ /* */ /* Program to prepare data file for cross-validation */ /* ------------------------------------------------