代码搜索:while
找到约 10,000 项符合「while」的源代码
代码结果 10,000
www.eeworm.com/read/365783/9847803
while1
#!/bin/sh
echo "Enter password"
read trythis
while [ "$trythis" != "secret" ]; do
echo "Sorry, try again"
read trythis
done
exit 0
www.eeworm.com/read/365783/9847846
while2
#!/bin/sh
foo=1
while [ "$foo" -le 20 ]
do
echo "Here we go again"
foo=$(($foo+1))
done
exit 0
www.eeworm.com/read/167540/9964113
c-while
www.eeworm.com/read/167373/9971036
txt while.txt
/*测试生成while的指令的源程序*/
var id:int
begin
id:=1 ;
while id
www.eeworm.com/read/358682/10182245
cpp while.cpp
// while.cpp -- introducing the while loop
#include
const int ArSize = 20;
int main()
{
using namespace std;
char name[ArSize];
cout
www.eeworm.com/read/278758/10511986
txt while.txt
const a=4,b=-2,c=7.5;
var x,y,m :integer;
begin
x:=b;
while x
www.eeworm.com/read/278058/10578036
cpp while.cpp
// while.cpp -- introducing the while loop
#include
const int ArSize = 20;
int main()
{
using namespace std;
char name[ArSize];
cout
www.eeworm.com/read/277472/10633226