代码搜索:repeat
找到约 6,690 项符合「repeat」的源代码
代码结果 6,690
www.eeworm.com/read/272894/10936831
dpr ex.dpr
{
Method: Construct
Clarity:
Step operation (Step)
Step changes odd number of plus.
Rectangle operation (Rect) (x1,y1,x2,y2) consists of double Step which changes (x1,y2) and (x2,y1) and (x
www.eeworm.com/read/417421/10990664
txt test2.txt
program example5;
var A,B,C,D,W:integer;
begin
A:=5; B:=4; C:=3; D:=2; W:=1;
if W
www.eeworm.com/read/416247/11036611
m ac_controller.m
%This programme solves various formulaes for three phase half wave star rectifier
%This function runs independently as well as with "power_electronics"
%In order to execute this function type ''tpha
www.eeworm.com/read/469882/6928801
txt 111.txt
force c 1,0 50 -repeat 100
force y 1,0 100
force x 0 100
force x 1 200
force x 1 300
run 400
force y 1,0 100
force x 1 100
force x 0 200
force x 1 300
run 400
www.eeworm.com/read/101805/6967468
asp default.asp
//
// UltraDev UCart include file Version 1.0
//
function UC_Shoppi
www.eeworm.com/read/467010/7013449
vwf fr_div.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/467010/7013472
vwf fr_div-sim.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/466643/7030721
txt testpas2.txt
var x,y,z;
begin
x:=10;
y:=-5;
read(z);
repeat
if z >5 then
begin
z:=z+8;
z:=z+z;
end;
else
z:=z+4;
until
z>1
www.eeworm.com/read/400482/7103324
v loop3.v
module loop3;
integer i;
initial begin
i=0;
repeat(4)
begin
$display ("i=%h",i);
i=i+1;
end
end
endmodule