代码搜索:while
找到约 10,000 项符合「while」的源代码
代码结果 10,000
www.eeworm.com/read/390596/8457780
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/390596/8457908
class sum_while.class
www.eeworm.com/read/390596/8457912
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/390596/8457916
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/390596/8457918
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/390596/8457925
class prime_while.class
www.eeworm.com/read/189144/8489065
bmp while background.bmp
www.eeworm.com/read/432934/8562254
m stucture_while.m
% stucture_while.m
% while循环结构示例
% 求浮点数eps的精度
EPS=1;
num=0;
while(1+EPS)>1
EPS = EPS/2;
num=num+1;
end
disp('eps的数值(浮点数的精度)为:')
num
EPS=EPS*2
www.eeworm.com/read/430645/8736564
txt while2.txt
int x =1;
while (x < 9) {
while (x < 9)
while (x < 9)
while (x < 9)
x= x+1;
x= x+1;
}