代码搜索:while
找到约 10,000 项符合「while」的源代码
代码结果 10,000
www.eeworm.com/read/149876/5696430
exp while-stepping.exp
# Copyright (C) 1998 Free Software Foundation, Inc.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
#
www.eeworm.com/read/149876/5696441
exp while-dyn.exp
# Copyright (C) 1998 Free Software Foundation, Inc.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
#
www.eeworm.com/read/149433/5699909
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/149433/5699910
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/149433/5699932
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/149433/5699933
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/149433/5699934
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/148694/5711866
exp while-stepping.exp
# Copyright (C) 1998 Free Software Foundation, Inc.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
#
www.eeworm.com/read/148694/5711877
exp while-dyn.exp
# Copyright (C) 1998 Free Software Foundation, Inc.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
#