代码搜索:while

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

代码结果 10,000
www.eeworm.com/read/347649/3164676

txt prime_while.txt

All primes in 2..100 are: 2 3 5 7 11 13 17 19 23 29 31 37 41 43 47 53 59 61 67 71 73 79 83 89 97 n=25
www.eeworm.com/read/347649/3164677

java prime_while.java

public class Prime_while { public static void main(String args[]) { final int MAX=100; int j,k,n; System.out.println("All primes in 2.."+MAX+" are: ");
www.eeworm.com/read/342198/3235892

uv2 while.uv2

### uVision2 Project, (C) Keil Software ### Do not modify ! Target (Target 1), 0x0000 // Tools: 'MCS-51' Group (Source Group 1) File 1,1, Options 1,0,0 // Target 'T
www.eeworm.com/read/339501/3299453

uv2 while.uv2

### uVision2 Project, (C) Keil Software ### Do not modify ! Target (Target 1), 0x0000 // Tools: 'MCS-51' Group (Source Group 1) File 1,1, Options 1,0,0 // Target 'T
www.eeworm.com/read/334226/3370584

m while-5.m

i = 0; while (++i < 5) if (i < 3) continue; endif printf ("%d", i); endwhile printf ("\n");
www.eeworm.com/read/334226/3370585

m while-2.m

i = 5; while (--i) printf ("%d", i); endwhile printf ("\n");
www.eeworm.com/read/334226/3370586

m while-1.m

i = 0; while (eye (2)) i++; printf ("%d\n", i); endwhile
www.eeworm.com/read/334226/3370587

m while-4.m

i = 0; while (i++ < 20) if (i > 2) break; endif printf ("%d", i); endwhile; printf ("\n");
www.eeworm.com/read/334226/3370589

m while-3.m

i = 5; while (i) i--; printf ("%d", i); endwhile printf ("\n");
www.eeworm.com/read/329537/3430782

c sizeof-in-while.c

f () { do g (); while (sizeof (char)); }