代码搜索:until

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

代码结果 4,232
www.eeworm.com/read/250058/12438778

js get-time-between-example.js

var until = getTimeBetween('', '10 Jun, 2014'); alert(until[0] + 'years ' + until[1] + 'months ' + until[2] + 'days'); var since = getTimeBetween('10 Jun, 2003', ''); alert(since[0] + 'years ' +
www.eeworm.com/read/131795/14126099

dat vb_code13b.dat

语法 ---- Do [{While | Until} condition] [statements] [Exit Do] [statements] Loop 或者可以使用下面这种语法: Do [statements] [Exit Do] [statements] Loop [{While | Until} condition] Do Loop 语句的
www.eeworm.com/read/131445/14145826

txt ni.txt

and 1 begin 2 bool 3 call 4 case 5 char 6 constant 7 do 8 else 9 end 10 false 11 for 12 if 13 int 14 not 15 of 16 or 17 program 18 real 19 repeat 20 then 21 to 22 true 23 until
www.eeworm.com/read/129873/14220327

txt test.txt

{一个小程序;} read x,y; x:=11,y:=12; repeat if y>10 then x:=x+2; else y:=y+1; until y==25; end write x,y;
www.eeworm.com/read/231652/14224624

pas ac1180.pas

program ural1180; var c:char; m:byte; begin m:=0; repeat read(c); m:=(m+ord(c)) mod 3; until eoln; if m=0 then writeln(2) else begin writeln(1); writeln
www.eeworm.com/read/231652/14224658

pas ac1176.pas

program ural1176; const maxn=1000; maxl=32000; e:array[0..7]of byte=(1,2,4,8,16,32,64,128); var ad:array[0..maxn*maxn shr 3-1]of byte; now:array[1..maxn]of word; s,r:array[0..maxl+
www.eeworm.com/read/231652/14224773

pas ac1113.pas

program ural1113; var n,ans:real; m:longint; i:integer; begin readln(n,m); ans:=0;i:=1; repeat n:=n-m/(i*2-1); ans:=ans+m; inc(i); until n
www.eeworm.com/read/231652/14225024

pas ac1086.pas

program ural1086; const max=15000; var p:array[1..max]of longint; k,i,a:integer; x:longint; function prime(x:longint):boolean; var i:integer; begin i:=0; repeat
www.eeworm.com/read/231652/14225060

pas ac1083.pas

program ural1083; var n,k:shortint; f:longint; s:string; begin read(n); readln(s); k:=length(s)-1; f:=1; repeat f:=f*n; dec(n,k); until n
www.eeworm.com/read/231652/14225193

pas ac1226.pas

program ural1226; const letter:set of char=['A'..'Z','a'..'z']; var s:string; c:char; begin repeat read(c); if c in letter then s:=c+s else begin write(s,c)