代码搜索:while
找到约 10,000 项符合「while」的源代码
代码结果 10,000
www.eeworm.com/read/299792/7831681
c 16rbsh.c
int rbsh(p,n,a,b,m)
int n,*m;
double a,b,p[];
{ int i,j,k;
i=1; j=n;
while (i=a)&&(p[k-1]
www.eeworm.com/read/299792/7832314
c 15cbub.c
void cbub(p,n)
int n;
char p[];
{ int m,k,j,i;
char d;
k=0; m=n-1;
while (k
www.eeworm.com/read/299792/7832345
c 15rbub.c
void rbub(p,n)
int n;
double p[];
{ int m,k,j,i;
double d;
k=0; m=n-1;
while (k
www.eeworm.com/read/199568/7844337
java calculate.java
// Calculate the sum of the integers from 1 to 10
public class Calculate
{
public static void main( String args[] )
{
int sum;
int x;
x = 1; // initialize x to 1 f
www.eeworm.com/read/299432/7859259
c break_test.c
void main()
{
int i;
while( 1 ) {
if( i ) continue;
break;
}
}
www.eeworm.com/read/299143/7886098
c arrays.c
char x[] = "abc";
int i[] = { 1, 2, 3, 4, 5};
void main (void)
{
while (1);
;
}
www.eeworm.com/read/398611/7933681
cc string.cc
void copyLeft(char d[], char s[], int n)
{
for(int i=0; i