代码搜索:until
找到约 4,232 项符合「until」的源代码
代码结果 4,232
www.eeworm.com/read/176251/9510609
bas break.bas
'
SUB EXSUB
EXIT SUB
? "SUB: EXIT SUB FAILED"
END
? "TEST REPEAT"
REPEAT
EXIT LOOP
? "REPEAT: EXIT LOOP FAILED"
UNTIL 1
? "TEST WHILE"
WHILE 1
EXIT LOOP
? "WHILE: EXIT LOOP FAILED"
WEND
www.eeworm.com/read/355654/10251404
rpt i8051_lib.map.rpt
Analysis & Synthesis report for i8051_lib
Fri Jun 06 09:40:12 2008
Quartus II Version 7.1 Build 156 04/30/2007 SJ Full Version
---------------------
; Table of Contents ;
--------------------
www.eeworm.com/read/272894/10936831
dpr ex.dpr
{
Method: Construct
Clarity:
Step operation (Step)
Step changes odd number of plus.
Rectangle operation (Rect) (x1,y1,x2,y2) consists of double Step which changes (x1,y2) and (x2,y1) and (x
www.eeworm.com/read/417421/10990664
txt test2.txt
program example5;
var A,B,C,D,W:integer;
begin
A:=5; B:=4; C:=3; D:=2; W:=1;
if W
www.eeworm.com/read/467371/7011133
lst psmons.lst
PSMONS PAGE 1
1 ;**************************************************
www.eeworm.com/read/467371/7011149
asm adccont.asm
;********************************************************************
;
; Author : ADI - Apps www.analog.com/MicroConverter
;
; Date : April 2002
;
; File : A
www.eeworm.com/read/467371/7011150
asm adcpin.asm
;********************************************************************
;
; Author : ADI - Apps www.analog.com/MicroConverter
;
; Date : April 2002
;
; File : A
www.eeworm.com/read/467371/7011173
asm pdown.asm
;********************************************************************
;
; Author : ADI - Apps www.analog.com/MicroConverter
;
; Date : Febuary 2001
;
; File :
www.eeworm.com/read/466643/7030721
txt testpas2.txt
var x,y,z;
begin
x:=10;
y:=-5;
read(z);
repeat
if z >5 then
begin
z:=z+8;
z:=z+z;
end;
else
z:=z+4;
until
z>1