代码搜索:repeat
找到约 6,690 项符合「repeat」的源代码
代码结果 6,690
www.eeworm.com/read/392151/8360779
asm 711.asm
7_11.asm
repeat macro x
if length x gt 5
rept 10
add ax,ax
endm
endif
endm
www.eeworm.com/read/292233/8366150
txt keyword.txt
1 and
2 begin
3 bool
4 call
5 case
6 char
7 constant
8 do
9 else
10 end
11 false
12 for
13 if
14 integer
14 not
16 of
17 or
18 program
19 real
20 repeat
21 then
22 to
23 true
24
www.eeworm.com/read/189375/8473305
keyword
integer
logical
program
const
begin
end
procedure
write
if
do
then
end
while
until
repeat
call
.
www.eeworm.com/read/390009/8489323
tny sample.tny
{ Sample program
in TINY language -
computes factorial
}
read x; { input an integer }
if 0 < x then { don't compute if x
www.eeworm.com/read/188596/8525743
pas 1113.pas
var a,m,n:longint;
d,o,w:double;
begin
readln(n,m);
a:=0;
w:=0;
o:=0;
repeat
inc(a);
d:=m/(a shl 1-1);
if w+d>=n then break;
w:=w+d;
o:=o+m;
until
www.eeworm.com/read/432630/8585866
pro chapter04mmul.pro
; Chapter04MMul.pro
PRO Chapter04MMul
yn = " "
REPEAT BEGIN
READ, PROMPT = "请输入X = ?", x
READ, PROMPT = "请输入Y = ?", y
PRINT, x , " * " , y , " = " , x * y
READ, PROM