代码搜索:until

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

代码结果 4,232
www.eeworm.com/read/158585/11600480

plx test.plx

program integer i,j; begin write 2; i:=3; repeat j:=3; while j=i then write i end; i:=i+2 until i>=100 end.
www.eeworm.com/read/158585/11600494

plx test.plx

program integer i,j; begin write 2; i:=3; repeat j:=3; while j=i then write i end; i:=i+2 until i>=100 end.
www.eeworm.com/read/347853/11631087

pro ans_159a.pro

/* Turbo Prolog 2.0, Answer to first Exercise on page 159. Copyright (c) 1986, 88 by Borland International, Inc */ /* * Uses repeat to keep accepting characters, printing *
www.eeworm.com/read/346784/11722201

c dz60_init.c

/*******************************************************************************/ /* Copyright (c) 2007 Freescale Semiconductor Freescale Confidential Proprietary \file DZ60_init.c \brief
www.eeworm.com/read/254787/12118833

tny t.tny

read x; if fact :=1; repeat fact :=fact * x;{SA;FJ;AS}} x :=x - 1 until x = 0; write fact end
www.eeworm.com/read/151708/12179902

m animate.m

function dummy = animate(cc) %ANIMATE Run application until breakpoint is reached. % ANIMATE(CC) is similar to the RUN method. It causes the target % DSP processor to execute until a breakpoin
www.eeworm.com/read/151704/12181131

m animate.m

function dummy = animate(cc) %ANIMATE Run application until breakpoint is reached. % ANIMATE(CC) is similar to the RUN method. It causes the target % DSP processor to execute until a breakpoin
www.eeworm.com/read/339554/12225263

pas ac1191.pas

program tju1191; const maxt=1100; maxw=101; var score:array[0..maxt,-1..maxw]of longint; w,h,a,b,c,d,m,time:longint; begin repeat fillchar(score,sizeof(score),0); read(w,h)
www.eeworm.com/read/339554/12225328

pas ac1108.pas

program tju1108; const maxn=100000; var a,b:array[0..maxn+1]of longint; n,i,x,ans,l,r:longint; begin repeat read(n); for i:=1 to n do begin read(x);b[x]:=i; end;
www.eeworm.com/read/339554/12225395

pas ac1160.pas

program tju1160; var s:string; c:char; x:extended; k,a:longint; begin repeat s:=''; repeat read(c); if c=' ' then break; s:=s+c; until false;