代码搜索:while

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

代码结果 10,000
www.eeworm.com/read/456615/7343579

c 例9-1.c

/* Note:Your choice is C IDE */ #include #include #include #include #define N 100 struct student { char num[10]; char name[10]; char tel[11]
www.eeworm.com/read/456605/7343762

c 例3-2.c

#include main() { char ch; while((ch=getchar())!='\n') { if((ch>='a'&&ch='A'&&ch
www.eeworm.com/read/456603/7343840

v loop2.v

module loop2; integer i; initial begin i=0; while(i
www.eeworm.com/read/456569/7344947

c 16.c

#include /*定义待排序数组的最大长度*/ #define MAX 100 /*———————————————————————直接插入排序——————————————————————————*/ void InsertSort(int *R,int n) { /* 对数组R中的元素R[1]..R[n-1]按递增序进行插入排序*/ int i,j
www.eeworm.com/read/456569/7345049

c 60.c

#include "stdio.h" #include "string.h" int Fmod(int x,int r,int p); int IptoInt(char *ip); int e,d=1,n; int main(int argc,char *argv[]) { int ip,fai,p=43,q=59,ch1,i=0,j=0,edch,dech=0;
www.eeworm.com/read/456569/7345052

bak 60.c.bak

#include "stdio.h" #include "string.h" int Fmod(int x,int r,int p); int IptoInt(char *ip); int e,d=1,n; int main(int argc,char *argv[]) { int ip,fai,p=43,q=59,ch1,i=0,j=0,edch,dech=0;
www.eeworm.com/read/456533/7345917

cpp textin1.cpp

// textin1.cpp -- reading chars with a while loop #include int main() { using namespace std; char ch; int count = 0; // use basic input cout
www.eeworm.com/read/456533/7346214

cpp textin1.cpp

// textin1.cpp -- reading chars with a while loop #include int main() { using namespace std; char ch; int count = 0; // use basic input cout
www.eeworm.com/read/456386/7350111

c merge.c

#include void Mpass(int x[],int y[],int k,int n); /*声明其为函数*/ void Msort(int x[],int y[],int n); /*声明其为函数*/ int main(void) { /*要排序整型数据序列*/ int a[] = {26,5,37,1,61,11,59,15,48,19
www.eeworm.com/read/456367/7350755

cpp textin1.cpp

// textin1.cpp -- reading chars with a while loop #include int main() { using namespace std; char ch; int count = 0; // use basic input cout