代码搜索:while
找到约 10,000 项符合「while」的源代码
代码结果 10,000
www.eeworm.com/read/102395/6233344
txt while1.txt
Die erste innere \tt while \rm - Schleife l鋝st den linken Zeiger \tt\blue2 i \rm\black soweit nach rechts
laufen, solange die Schluessel \tt A[i] \rm kleiner sind als \tt\red v \rm\black .
Ist \tt\r
www.eeworm.com/read/102395/6233349
txt while2.txt
Die zweite innere \tt while \rm - Schleife l鋝st den rechten Zeiger \tt\green2 j \rm\black nach links
laufen, solange die Schluessel \tt A[j] \rm gr鰏ser sind als \tt\red v \rm\black .
www.eeworm.com/read/449241/6302033
class fib_while.class
www.eeworm.com/read/449241/6302034
txt fib_while.txt
0 1 1 2 3 5 8 13 21 34 55 89 144 233 377 610 987 1597 2584 4181
www.eeworm.com/read/449241/6302035
java fib_while.java
public class Fib_while
{
public static void main(String args[])
{
final int MAX = 20;
int i=0,j=1,k=0;
while (k
www.eeworm.com/read/449241/6302069
class sum_while.class
www.eeworm.com/read/449241/6302070
java sum_while.java
//用while语句实现求1到10之和.
class Sum_while
{
public static void main(String args[])
{
int i=1,n=10,s=0;
while (i
www.eeworm.com/read/449241/6302071
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/449241/6302072
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/449241/6302073