代码搜索:repeat
找到约 6,690 项符合「repeat」的源代码
代码结果 6,690
www.eeworm.com/read/415542/11063529
tny samply.tny
{a := abstract + (name + 3);
a := abstract + name;
a := not 3+3;
a := 'string'
int a;
bool q;
while true do
a := 1;
end;
read a;}
int A;
while A
www.eeworm.com/read/413492/11154014
m seq_arrange.m
% 给出x中元素按大小排序的排位值,允许出现并列的情况!!!
function y=seq_arrange(x)
y=zeros(1,length(x));
repeat=0;
time=1;% 计算排过序的次数,最后把所有元素都排一次
place=1;
while time
www.eeworm.com/read/335286/12541217
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/147183/12579459
txt program.txt
program
integer num,a,b;
begin
num:=1;
write num;
repeat
num:=num+1;
a:=num;
repeat
a:=a-1;
b:=num/a*a;
until b=num;
if a=1 then write num
www.eeworm.com/read/146449/12647740
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/300713/13897218
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/237857/13926594
txt pcwaveguidenotaper.txt
########################################################################
# This is an example of the input file for 2D FDTD transmission
#calculations.
#A waveguide taper from W3 PC waveguide t
www.eeworm.com/read/237857/13926614
txt pcwaveguidetaper.txt
########################################################################
# This is an example of the input file for 2D FDTD transmission
#calculations.
#A waveguide taper from W3 PC waveguide t
www.eeworm.com/read/132791/14072852
v loop3.v
module loop3;
integer i;
initial begin
i=0;
repeat(4)
begin
$display ("i=%h",i);
i=i+1;
end
end
endmodule