代码搜索:while
找到约 10,000 项符合「while」的源代码
代码结果 10,000
www.eeworm.com/read/481229/6645267
pdb while.pdb
www.eeworm.com/read/481229/6645268
obj while.obj
www.eeworm.com/read/481229/6645270
exe while.exe
www.eeworm.com/read/481229/6645273
dsw while.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# 警告: 不能编辑或删除该工作区文件!
###############################################################################
Project: "while"=".\while.dsp
www.eeworm.com/read/481229/6645274
plg while.plg
Build Log
--------------------Configuration: while - Win32 Debug--------------------
Command Lines
Creating temporary file "C:\DOCUME~1\ADMINI~
www.eeworm.com/read/403011/11524501
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/403009/11524806
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/401452/11557567
txt while.txt
const a=10;
var b,c;
procedure p;
var d;
begin
c:=b+a
end;
begin
read(b);
while b#0 do
begin
call p; write(2*c); read(b)
end
end.
www.eeworm.com/read/262261/11595737
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/262261/11595806
while2
#!/bin/sh
foo=1
while [ "$foo" -le 20 ]
do
echo "Here we go again"
foo=$(($foo+1))
done
exit 0