代码搜索:repeat
找到约 6,690 项符合「repeat」的源代码
代码结果 6,690
www.eeworm.com/read/246404/12729173
pas ac1093.pas
program tju1093;
const
maxn=2004;
var
x,y,l:array[0..maxn]of cardinal;
n,i,ans:cardinal;
procedure qsort(s,t:cardinal);
var
p,i,j,tx,ty:cardinal;
begin
if s>=t then exit;
www.eeworm.com/read/246404/12729178
pas ac1078.pas
program tju1078;
const
maxsize=20;
var
qx,qy:array[1..sqr(maxsize)]of byte;
step:array[1..maxsize,1..maxsize]of byte;
count:array[1..maxsize,1..maxsize]of qword;
n,m,p,c,i,j,t,f,r:wor
www.eeworm.com/read/246404/12729374
pas ac1257.pas
program tju1257;
const
size=250;
var
cut:array[1..size,1..size]of byte;
x,y,depth,dx,dy,n,i,sign:longint;
c:char;
procedure getnum(var n:longint);
begin
read(c);
if c='-' t
www.eeworm.com/read/145250/12743297
tny test1.tny
true false or and not
int bool char while do
if then else repeat until
read write , ; :=
+ - * / (
) < = > = a2c 123 'EFG'
www.eeworm.com/read/244507/12859198
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/143521/12868175
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/326428/13142832
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/139528/13150951
pas ave.pas
//求平均数
sum:=0;
s2:=4;
n:=0;
average:=0;
repeat
read x;
sum:=sum+x;
n:=n+1
until x=0; //输入0结束输入
if 1
www.eeworm.com/read/326116/13165249
v loop3.v
module loop3;
integer i;
initial begin
i=0;
repeat(4)
begin
$display ("i=%h",i);
i=i+1;
end
end
endmodule