代码搜索:while
找到约 10,000 项符合「while」的源代码
代码结果 10,000
www.eeworm.com/read/387475/8675001
java ex5_1while.java
public class Ex5_1While
{
public static void main(String[] args){
int i=10;
while(i
www.eeworm.com/read/364002/9926363
vi while循环_build array.vi
www.eeworm.com/read/361166/10065510
vi outside while loop demo.vi
www.eeworm.com/read/421644/10718186
npp while_program_2.adb.npp
with text_io; use text_io;
with Ada.Float_text_io; use Ada.Float_text_io;
procedure while_program_2 is
Price_Per_Kilo : Float; --Price of apples
Kilos_Of_Apples: Float; --Apples required
Cost : Float;
www.eeworm.com/read/464279/7166921
sh ex-11-01_while.sh
#!/bin/sh
# Chapter 11 - The while loop
# This example demonstrates a simple while loop that
# counts to 10
x=0
while [ $x -lt 10 ]
do
echo $x
x=`echo "$x + 1" | bc`
done
www.eeworm.com/read/464279/7166922
sh ex-11-03_while.sh
#!/bin/sh
# Chapter 11 - Reading User Input
# This example demonstrates reading user input in a while loop
# As with the previous example, you may have to change the line:
#
# /bin/echo "Enter the n
www.eeworm.com/read/464279/7166927
sh ex-11-02_while.sh
#!/bin/sh
# Chapter 11 - The while loop
# This example demonstrates the use of nested while loops
# You may need to change the line:
#
# /bin/echo "$y \c"
#
# to
#
# /bin/echo -n "$y "
#
# on y
www.eeworm.com/read/400845/11567660
vi loop count (completed - while loop).vi
www.eeworm.com/read/400845/11567664