代码搜索:while
找到约 10,000 项符合「while」的源代码
代码结果 10,000
www.eeworm.com/read/126847/14398783
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/126847/14398787
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/223835/14615958
c while1.c
#include
int main (void)
{
int j = 5;
while (j > 0)
printf("j = %i \n", j--);
printf("\nand again ...\n");
j = 5;
while (j > 0) {
printf("j = %i \n", j);
j--;
}
return 0;
}
www.eeworm.com/read/214331/15105635
class fib_while.class
www.eeworm.com/read/214331/15105639
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/214331/15105642
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/214331/15105727
class sum_while.class
www.eeworm.com/read/214331/15105729
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/214331/15105733
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