代码搜索:while

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

代码结果 10,000
www.eeworm.com/read/184284/9113290

pl0 test.pl0

/* Test.PL0 */ Program abc; Integer x,y,z; Real a,b; Procedure ab(Var m,n:Integer;t:Real); Begin t:=n+m; If m>n then n:=m else t:=m; While n
www.eeworm.com/read/380940/9121000

c fstreql.c

int fstreql(char far *str1, char far *str2) { while ((*str1 == *str2) && (*str1)) { str1++; str2++; } return((*str1 == NULL) && (*str2 == NULL)); }
www.eeworm.com/read/380937/9121860

c twodim.c

# include void main() { int array[16][16]; int i, j, k, m, n; /* 变量初始化 */ m = 1; while(m == 1) { printf("请输入n(0
www.eeworm.com/read/183716/9143482

pl0 test.pl0

/*这是一个测试程序*/ Program abc; Integer x,y,z; /*变量声明*/ Real a,b; Procedure ab(Var m,n:Integer; t:Real); /*过程*/ Begin t:=n+m; If m>n then /*条件语句*/ n:=m els
www.eeworm.com/read/380114/9162699

cpp graph3.cpp

//图的运算的实现文件graph3.cpp #include"graph3.h" //构造函数,初始化图的邻接矩阵与边集数组 adjMList::adjMList(RCW GE[],int n,int e) {int i,j; for(i=0; i
www.eeworm.com/read/182990/9181313

txt daima.txt

词法分析器程序源代码 include #include #include #define MAX 50 void main() { FILE *in,*out;/*存放输入字符串和输出单词串的文件*/ char arr[MAX];/*arr数组存放单词符号*/ char currentchar;/*currentcha
www.eeworm.com/read/182721/9194012

c queenslv.c

#include #include #include #define N 8 #define RUN_TIME 100 enum boolean {false,true}; int x[N+1]={0}; int y[N+1]={0}; int randomi(int m,int n) { int j; if(m > n
www.eeworm.com/read/182612/9198804

cpp 3.14.cpp

#include void main() { int i(5); while(i>=1) { for(int j(1);j
www.eeworm.com/read/378832/9214998

c ssp.c

/***************************************************************************** * ssp.c: SSP C file for Philips LPC214x Family Microprocessors * * Copyright(C) 2006, Philips Semiconductor
www.eeworm.com/read/181921/9226951

cpp 八转十.cpp

#include main() { char *p,s[6]; int n; p=s; gets(p); n=0; while(*(p)!='\0') { n=n*8+*p-'0'; p++; } printf("%d",n); }