代码搜索:until

找到约 4,232 项符合「until」的源代码

代码结果 4,232
www.eeworm.com/read/119507/14827632

fxb pascal4.fxb

[终结符号] 0 $ 300 ε 1 and 2 array 3 begin 4 case 5 const 6 div 7 do 8 downto 9 else 10 end 11 file 12 for 13 function 14 goto 15 if 16 in 17 label 18 mod 19 nil 20 not 21 of 22 or
www.eeworm.com/read/119507/14827634

fxb pascal5.fxb

[终结符号] 0 $ 300 ε 1 and 2 array 3 begin 4 case 5 const 6 div 7 do 8 downto 9 else 10 end 11 file 12 for 13 function 14 goto 15 if 16 in 17 label 18 mod 19 nil 20 not 21 of 22 or
www.eeworm.com/read/119507/14827637

fxb pascal2.fxb

[终结符号] 0 $ 300 ε 1 and 2 array 3 begin 4 case 5 const 6 div 7 do 8 downto 9 else 10 end 11 file 12 for 13 function 14 goto 15 if 16 in 17 label 18 mod 19 nil 20 not 21 of 22 or
www.eeworm.com/read/119507/14827662

ll1 pascal2.ll1

[终结符号] 0 $ 300 ε 1 and 2 array 3 begin 4 case 5 const 6 div 7 do 8 downto 9 else 10 end 11 file 12 for 13 function 14 goto 15 if 16 in 17 label 18 mod 19 nil 20 not 21 of 22 or
www.eeworm.com/read/118843/14852483

pl gcd.pl

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/209207/15225830

bas loopuntl.bas

10 rem LOOPUNTL.BAS 20 i = 0 30 do 40 i = i + 1 50 print "Value of i is";i 60 loop until i > 12
www.eeworm.com/read/370579/9595081

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/111026/15519999

pl gcd.pl

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/106716/15625676

pl gcd.pl

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.