代码搜索:until
找到约 4,232 项符合「until」的源代码
代码结果 4,232
www.eeworm.com/read/339554/12225743
pas ac1209.pas
program tju1209;
var
a,n,d:cardinal;//d=b-a
begin
repeat
read(a);n:=a*a+1;d:=trunc(sqrt(n));
while n mod d>0 do dec(d);
writeln(d+a+a+n div d);
until seekeof;
end.
www.eeworm.com/read/339554/12225785
pas ac1206.pas
program tju1206;
var
n,m:byte;
begin
repeat
read(n,m);
writeln(power(2,n)*(m+1));
until seekeof;
end.
www.eeworm.com/read/339483/12230624
sh redir3.sh
#!/bin/bash
# Same as previous example, but with "until" loop.
if [ -z "$1" ]
then
Filename=names.data # Default, if no filename specified.
else
Filename=$1
fi
# while [ "$name" != Smi
www.eeworm.com/read/338644/12290311
summary timecontrol.map.summary
Analysis & Synthesis Status : Successful - Wed Jul 09 22:43:36 2008
Quartus II Version : 7.2 Build 207 03/18/2008 SP 3 SJ Full Version
Revision Name : TimeControl
Top-level Entity Name : TimeContro
www.eeworm.com/read/252193/12294624
sh untilexample.sh
#!/bin/sh
until [ ! -f a.lock ]
do
sleep 1
done
echo "You may start another application safely"
b
www.eeworm.com/read/149884/12339629
aspx ch05-03-06.aspx
后测式Do...Loop循环语句
后测式Do...Loop循环语句
使用 Until 关键字
www.eeworm.com/read/251145/12362366
rpt keyboard.flow.rpt
Flow report for keyboard
Sat Oct 27 01:04:25 2007
Quartus II Version 6.1 Build 201 11/27/2006 SJ Full Version
---------------------
; Table of Contents ;
---------------------
1. Legal Not
www.eeworm.com/read/251145/12362368
summary keyboard.map.summary
Analysis & Synthesis Status : Failed - Sat Oct 27 01:04:25 2007
Quartus II Version : 6.1 Build 201 11/27/2006 SJ Full Version
Revision Name : keyboard
Top-level Entity Name : keyboard
Family : Str
www.eeworm.com/read/250668/12390511
summary uart.map.summary
Analysis & Synthesis Status : Successful - Mon May 14 10:52:21 2007
Quartus II Version : 7.0 Build 33 02/05/2007 SJ Full Version
Revision Name : UART
Top-level Entity Name : UART
Family : Cyclone
www.eeworm.com/read/149028/12408284
vhd 36_gcd.vhd
entity gcd is
port(start: in bit;
clk : in bit;
din : in bit;
xi,yi: in integer;
dout : out bit;
output:out integer);
end gcd;
architecture behavior of gcd is
begin
process