代码搜索:while
找到约 10,000 项符合「while」的源代码
代码结果 10,000
www.eeworm.com/read/338159/3320061
js while.js
//****************************/
//* FastScript v1.0 */
//*'while' operator demo */
//****************************/
var j = 1, i = 0;
while (i < 10)
{
j++;
Inc(
www.eeworm.com/read/338159/3320072
vb while.vb
' FastScript v1.0
' While operator demo
dim i, j
j = 1
i = 0
while i < 10
j = j + 1
Inc(i)
wend
ShowMessage(j)
www.eeworm.com/read/338159/3320089
pas while.pas
{**************************}
{ FastScript v1.0 }
{ While operator demo }
{**************************}
var
i, j: Integer;
begin
j := 1;
i := 0;
while i < 10 do
beg
www.eeworm.com/read/334226/3370588
exp while.exp
set test while-1
set prog_output "^$"
do_test while-1.m
set test while-2
set prog_output "4321"
do_test while-2.m
set test while-3
set prog_output "4321"
do_test while-3.m
set test while-4
set prog
www.eeworm.com/read/324136/3506054
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/324136/3506260
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
www.eeworm.com/read/323635/3512377
opt while.opt
### uVision2 Project, (C) Keil Software
### Do not modify !
cExt (*.c)
aExt (*.a*; *.src)
oExt (*.obj)
lExt (*.lib)
tExt (*.txt)
pExt (*.plm)
CppX (*.cpp)
DaveTm { 0,0,0,0,0,0,0,0 }
www.eeworm.com/read/323635/3512378
c while.c
#include
void Delayx1ms(Byte count);
void Ifdemo3(void){Byte FgpulseShort,FgpulseLong,Dutycount;
while(P1_0==0) //不为0跳过
{Delayx1ms(1); //当检测到P1_0为低电平时计数直到P1_0变高,
if(P1_0==
www.eeworm.com/read/316877/3584619
js while.js
var i = 0, num = 50;
// loop until the counter hits 10
while( i < 10 )
{
num--;
i++;
}
// display the final counter and number values
alert( "Loop stopped at " + i + "\nnum is now " + num
www.eeworm.com/read/305303/3774385
java while.java
package gnu.jemacs.lang;
import gnu.expr.*;
import kawa.lang.*;
import gnu.lists.*;
import gnu.mapping.*;
/** Implement the ELisp `while' syntax form. */
public class While extends Syntax
{
static