代码搜索:while

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

代码结果 10,000
www.eeworm.com/read/307145/13727832

c ch07s049.c

#define SWAP(x, y) do{unsigned long tmp;\ tmp = x;\ x = y;\ y = tmp;} while(0)
www.eeworm.com/read/304690/13789194

txt 费波那奇数列.txt

void main() { int f1,f2,i=3,t; output "费波那奇数列的前46个数\n"; f1=1; f2=1; output "1\n1\n"; while(i
www.eeworm.com/read/304449/13794142

txt test1_5.txt

main ( ) { int m=1,j=6; while(m) /* m不等于0,为真*/ { j=j+m; m =m-1; } printf(“%d”,j); }
www.eeworm.com/read/304449/13794238

txt test1_5.txt

main ( ) { int m=1,j=6; while(m) /* m不等于0,为真*/ { j=j+m; m =m-1; } printf(“%d”,j); }
www.eeworm.com/read/304361/13795536

txt prog_5.txt

int z; int g(int a,int z) { int e; e=5; do{ z=a+z; e=e-1; }while(e>0); return z; } void f(void) { int a,k; for(a=0;a
www.eeworm.com/read/304361/13795544

txt c_code.txt

int z; int g(int a,int z) { int e; e=5; do{ z=a+z; e=e-1; }while(e>0); return z; } void f(void) { int a,k; for(a=0;a
www.eeworm.com/read/301235/13863153

txt 1.txt

{ int a; int b; read a; write a; if (a==10) b=1; else b=2; while(a>0) {a=a-1; b=b+1; } write b; do{ b=b+1; }while(b
www.eeworm.com/read/149876/5696456

c until.c

foo (void) { int i, x, y, z; x = 0; y = 1; i = 0; while (i < 2) i++; x = i; y = 2 * x; z = x + y; y = x + z; x = 9; y = 10; } main () { int a = 1; foo (); a += 2; return 0; }
www.eeworm.com/read/148694/5711891

c until.c

foo (void) { int i, x, y, z; x = 0; y = 1; i = 0; while (i < 2) i++; x = i; y = 2 * x; z = x + y; y = x + z; x = 9; y = 10; } main () { int a = 1; foo (); a += 2; return 0; }
www.eeworm.com/read/145281/5746818

pl lcond.pl

#!/usr/bin/perl -w # You may need to change the path on the above line # Under Windows run it like this: # perl LCond.pl in_file > out_file # (you will need to have installed a Perl interpreter