代码搜索:repeat

找到约 6,690 项符合「repeat」的源代码

代码结果 6,690
www.eeworm.com/read/243682/12925433

txt lingo851.txt

/L10"Lingo 8.51" Nocase Line Comment = -- Block Comment On = -- String Chars = " File Extensions = LS LGO LINGO /Delimiters = ~!@%^&*()-+=|\/{}[]:;"' , .?# /Indent Strings = "then" "else" /Uninde
www.eeworm.com/read/243682/12925554

txt lingo.txt

/L20"Lingo" Nocase Line Comment = -- Block Comment On = -- String Chars = " File Extensions = LGO LINGO /Delimiters = ~!@%^&*()-+=|\/{}[]:;"' , .? /Indent Strings = "then" "else" /Unindent String
www.eeworm.com/read/243682/12925581

txt datastagebasic.txt

/L20"DataStage BASIC" Line Comment = * Escape Char = \ String Chars = "' File Extensions = dsb /Delimiters = ~%^&()+=|\/{}[]:;"' , . /Function String = "%[a-zA-Z_]*)" /Indent Strings SOL = "Loop
www.eeworm.com/read/243682/12925620

txt modula2.txt

/L20"Modula2/2k-02-6-nr" Block Comment On = (* Block Comment Off = *) File Extensions = MOD DEF /Delimiters = ~!@$%^&*()_-+|\/{}[]:;"' ,.?/ /Indent Strings = "ARRAY" "BEGIN" "CONST" "DO" "ELSE" "ELS
www.eeworm.com/read/243682/12925774

txt purebasic.txt

/L20"Purebasic" Nocase Block Comment On = Block Comment Off = Line Comment = ; String Chars = "' File Extensions = PB /Delimiters = %^&*()-+|\/[];"' , . /Indent Strings = "if" "while" "for" "forea
www.eeworm.com/read/243682/12925846

txt progress91.txt

/L20"Progress 9.1D" Nocase Escape Char = ~ Block Comment On = /* Block Comment Off = */ File Extensions = p i w /Delimiters = @!()\/[]{}:;'",.? /Function String 1 = "PROCEDURE ^(*^):" /Function
www.eeworm.com/read/328978/12991216

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/140688/13067308

txt 堆栈操作.txt

.title “CONTEXT SAVE/RESTORE on SUBROUTINE or INTERRUPT CONTEXT_SAVE .macro PSHM AG ;Save 8 guard bits of accA PSHM AH ;Save upper 16 bits of accA PSHM AL ;Save lower 16 bits of accA PSHM
www.eeworm.com/read/140688/13067432

txt 堆栈操作.txt

.title “CONTEXT SAVE/RESTORE on SUBROUTINE or INTERRUPT CONTEXT_SAVE .macro PSHM AG ;Save 8 guard bits of accA PSHM AH ;Save upper 16 bits of accA PSHM AL ;Save lower 16 bits of accA PSHM
www.eeworm.com/read/325432/13206458

txt &.txt

var a,sum; ?alev==0 slev==0? begin sum:=0; a:=1; repeat begin sum:=sum+a; a:=a+1 end; until a>100; write(sum); end.