代码搜索:while

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

代码结果 10,000
www.eeworm.com/read/417783/10976081

c~ 44blib.c~

/************************************************ * NAME : 44BLIB.C * ************************************************/ #include "../inc/44b.h" #include "../inc/44blib.h" #include "../inc
www.eeworm.com/read/417783/10976087

c 44blib.c

/************************************************ * NAME : 44BLIB.C * ************************************************/ #include "../inc/44b.h" #include "../inc/44blib.h" #include "../inc
www.eeworm.com/read/271882/10976875

lst sms.lst

C51 COMPILER V7.02a SMS 08/28/2005 17:10:47 PAGE 1 C51 COMPILER V7.02a, COMPILATION OF MODULE SMS OBJECT MODULE PLACED IN sm
www.eeworm.com/read/271755/10982429

c mycat.c

/* mycat */ #include "stdio.h" int main (int argc, char* argv[]) { int i = 1;/*argc[0] is the name of the command*/ FILE *fp = NULL; char c; while (i < argc) { if ((fp=fop
www.eeworm.com/read/271634/10985889

cpp limit_price.cpp

#include"stdio.h" #include"string.h" #include"iostream.h" void limit_price(char a[]) { int i,j,t; char ch; jie: i=0,j=0; printf(" "); while((ch=getchar())!='\n') { if((c
www.eeworm.com/read/271634/10986051

cpp judge_date.cpp

#include"stdio.h" #include"iostream.h" void judge_date(char a[])//对输入的日期格式进行判断 { char ch; int i; loop: i=0; printf(" "); while((ch=getchar())!='\n') { if((i==4&&ch=='-')||
www.eeworm.com/read/271634/10986061

cpp judge_book_name.cpp

#include"stdio.h" #include"iostream.h" void input_book_name(char name[]) { char ch; loop: int i=0; printf(" "); while((ch=getchar())!='\n')//获取字符,给数组赋值 { name[i++]=ch; }
www.eeworm.com/read/417462/10988868

c 0_to_100.c

#include void main () { int value = 0; while (value
www.eeworm.com/read/417462/10988898

c no_cont.c

#include void main() { int counter; printf("\nEven values\n"); for (counter = 1; counter
www.eeworm.com/read/417462/10988949

c chrcnt.c

int chrcnt(const char *string, int letter) { int count = 0; while (*string) if (*string == letter) count++; return(count); }