代码搜索:repeat

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

代码结果 6,690
www.eeworm.com/read/217212/6322439

l test.l

/*这是一个测试程序*/ Program abc; Integer x,y,z; /*变量声明*/ Real a,b; array x[13,2], y[5]; const m=10,v=3.0, u=false; function ab(Integer i,m;Real t) /*过程*/ Begin t:=n+m;
www.eeworm.com/read/493718/6389226

pas ac1066.pas

program ural1066; var n,i:integer; a,b,c,l,r,h2:real; h1:real; begin readln(n,h1); l:=0;r:=h1; repeat b:=h1; h2:=(l+r)/2;c:=h2; for i:=3 to n do begin a:=b;b:
www.eeworm.com/read/493718/6389244

pas ac1098.pas

program ural1098; const n=1999; maxl=30000; var q:array[1..maxl]of char; l,p,i:integer; c:char; begin l:=0; repeat read(c); if c>=' ' then begin inc(l);
www.eeworm.com/read/493722/6389467

pas ac1277.pas

program ural1277; const maxn=100; inf=65535; var cap,flow:array[1..maxn*2,1..maxn*2]of word; lab:array[1..maxn*2]of integer; aug:array[1..maxn*2]of boolean; n,s,t:byte; k,m,i,j,
www.eeworm.com/read/493722/6389478

pas ac1261.pas

program ural1261; var n,bill,tip,m:longint; begin read(n);bill:=n;m:=1; repeat if n mod 3=2 then begin inc(tip,m); inc(n); end; n:=n div 3;m:=m*3; until n=0;
www.eeworm.com/read/491340/6438863

v loop3.v

module loop3; integer i; initial begin i=0; repeat(4) begin $display ("i=%h",i); i=i+1; end end endmodule
www.eeworm.com/read/488093/6496147

vwf div1000.vwf

/* WARNING: Do NOT edit the input and output ports in this file in a text editor if you plan to continue editing the block that represents it in the Block Editor! File corruption is VERY likely to
www.eeworm.com/read/483608/6599587

v loop3.v

module loop3; integer i; initial begin i=0; repeat(4) begin $display ("i=%h",i); i=i+1; end end endmodule
www.eeworm.com/read/481648/6636861

v loop3.v

module loop3; integer i; initial begin i=0; repeat(4) begin $display ("i=%h",i); i=i+1; end end endmodule
www.eeworm.com/read/480430/6664254

m ex2_14.m

Z=[-3; -7]; P=[0; -1.8+1.63j; -1.8-1.63j; -1; -1]; K=6.8; G=zpk(Z,P,K); G1=tf(G); %up to now repeat the earlier example, then get the zpk model G2=zpk(G1)