代码搜索:while
找到约 10,000 项符合「while」的源代码
代码结果 10,000
www.eeworm.com/read/177066/9470259
asm while.asm
;int main()
;{
; int i = 5;
; while( i )
; i--;
; return 0;
;}
_data segment
_data ends
_text segment
assume cs:_text ,ds:_data
main proc far
start:
push ds
xor ax, ax
push
www.eeworm.com/read/176730/9486437
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/176730/9486456
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/372527/9505060
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/372527/9505093
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/372449/9510372
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/372449/9510397
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/175135/9558710
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/366065/9834306
test while.test
# Commands covered: while
#
# This file contains a collection of tests for one or more of the Tcl
# built-in commands. Sourcing this file into Tcl runs the tests and
# generates output for errors.
www.eeworm.com/read/366065/9834858
n while.n
'\"
'\" Copyright (c) 1993 The Regents of the University of California.
'\" Copyright (c) 1994-1997 Sun Microsystems, Inc.
'\"
'\" See the file "license.terms" for information on usage and redistribut