代码搜索:while

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

代码结果 10,000
www.eeworm.com/read/428242/8881784

c rotate.c

/* Copyright (C) 1999 Lucent Technologies */ /* From 'Programming Pearls' by Jon Bentley */ /* rotate.c -- time algorithms for rotating a vector Input lines: algnum numtests n rotdist algnum:
www.eeworm.com/read/284924/8883009

pas 标程.pas

{ 请把Li Ming改成JLY,为了尊重原版还是把这个放上去了 } type rec=record t:string[30]; s:integer; end; var l,o:array[1..10000] of rec; i,j,n,m,v,c,p,r,h,len,z:integer; q:string; pr
www.eeworm.com/read/187002/8885190

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/284743/8903729

cpp 大作业.cpp

#include #include #define max 100 typedef struct AdjType { int adj; }sx[max][max],dx[max]; /////////////// void creat(sx s,dx D,int n) { int i,j; for(i=1;i
www.eeworm.com/read/284698/8908735

c ex4-2.c

#include main() { char c[10]; scanf("%s",c); printf("%s\n",c); while(1); }
www.eeworm.com/read/284698/8908738

c ex4-1.c

#include main() { int f[20], i; f[0]=0; f[1]=1; for (i=2;i
www.eeworm.com/read/284696/8908821

c ex15.c

#include main() { int i, s=0; i=1; while (i
www.eeworm.com/read/284696/8908854

c ex17.c

#include main() { int i, s=0; for (i=1; i
www.eeworm.com/read/284696/8908869

c ex20.c

#include main() { int a, b, c, d, i; for(a=1; a
www.eeworm.com/read/284554/8919667

c modi2.c

/* 下列给定程序中,函数fun的功能是:逐个比较a、b两个字符串对应位置中的字符,把ASCII值大或相等的字符依次存放到c数组中,形成一个新的字符串。例如,若a中的字符串为:aBCDeFgH,b中的字符串为:ABcd,则c中的字符串应为:aBcdeFgH。 请改正程序中的错误,使它能得出正确结果。 注意:不要改动main函数,不得增行或删行,也不得更改程序的b结构。 */ #inc ...