代码搜索:until
找到约 4,232 项符合「until」的源代码
代码结果 4,232
www.eeworm.com/read/185213/9050131
bas repeat.bas
10 REM repeat test
20 REPEAT
30 PRINT "Otra"
40 REPEAT
50 a$= INKEY$
60 UNTIL a$ ""
70 UNTIL a$ = "f" OR a$ = "F"
www.eeworm.com/read/184327/9109567
pas ac1105.pas
program tju1105;
const
zero=1e-6;
var
a,k,l,r,t,s1,s2:extended;
begin
repeat
read(a,k);
l:=k;r:=1e10;
repeat
t:=(l+r)/2;
s1:=a*t*t/2;
s2:=(t-k)*(t-k)*(t
www.eeworm.com/read/184327/9109673
pas ac1118.pas
program tju1118;
var
n:int64;
begin
repeat
read(n);
if n>=520000000 then
writeln(n-3)
else
writeln(520005196-(519999999-n) mod 5200);
until seekeof;
end.
www.eeworm.com/read/377348/9279589
c dz60_init.c
/*******************************************************************************/
/*
Copyright (c) 2007 Freescale Semiconductor
Freescale Confidential Proprietary
\file DZ60_init.c
\brief
www.eeworm.com/read/180357/9311201
asm adctimer.asm
;********************************************************************
;
; Author : ADI - Apps www.analog.com/MicroConverter
;
; Date : April 2002
;
; File : A
www.eeworm.com/read/372666/9498930
pl0 test4.pl0
var x,y,rem;
begin
read(x);
read(y);
repeat
rem = x-y*(x/y);
x = y;
y = rem
until rem=0;
write(x)
end.
www.eeworm.com/read/167697/9955511
txt 计数器:wait语句的应用.txt
-- This example shows an inefficient way of describing a counter.
-- vhdl model of a 3-state counter illustrating the use
-- of the WAIT statement to suspend a process.At each wait
-- statement th
www.eeworm.com/read/361921/10029015
summary a8254.map.summary
Analysis & Synthesis Status : Failed - Wed Sep 03 10:36:58 2008
Quartus II Version : 7.2 Build 151 09/26/2007 SJ Full Version
Revision Name : a8254
Top-level Entity Name : a8254
Family : Stratix I
www.eeworm.com/read/361921/10029032
rpt a8254.flow.rpt
Flow report for a8254
Wed Sep 03 10:36:58 2008
Quartus II Version 7.2 Build 151 09/26/2007 SJ Full Version
---------------------
; Table of Contents ;
---------------------
1. Legal Notice
www.eeworm.com/read/164962/10080362
txt counter_wait.txt
-- This example shows an inefficient way of describing a counter.
-- vhdl model of a 3-state counter illustrating the use
-- of the WAIT statement to suspend a process.At each wait
-- statement th