代码搜索:repeat
找到约 6,690 项符合「repeat」的源代码
代码结果 6,690
www.eeworm.com/read/233704/14142792
v ex2.v
module ex2;
integer a,b;
parameter size=7;
initial
begin
a=2;
b=1;
repeat(size) begin
#5 a=a+1;b=b+1;
end
end
initial
$monitor($time,,,,,,,"a=%d,b=%d",a,b);
endmodule
www.eeworm.com/read/233704/14142831
bak ex2.v.bak
module ex2;
integer a,b;
parameter size=7;
initial
begin
a=2;
b=1;
repeat(size) begin
#5 a=a+1;b=b+1;
end
end
initial
$display($time,,,,,,,"a=%d,b=%d",a,b);
endmodule
www.eeworm.com/read/131445/14145826
txt ni.txt
and 1
begin 2
bool 3
call 4
case 5
char 6
constant 7
do 8
else 9
end 10
false 11
for 12
if 13
int 14
not 15
of 16
or 17
program 18
real 19
repeat 20
then 21
to 22
true 23
until
www.eeworm.com/read/130824/14173317
tm ctest.tm
* TINY Compilation to TM Code
* File: ctest.tm
* Standard prelund:
0: LD 6,0(0) load maxaddress from location 0
1: ST 0,0(0) clear location 0
* End of standard prelude.
2:
www.eeworm.com/read/130255/14199942
java magic.java
// Lab 4, Exercise 3
// Magic square
import java.util.*;
public class Magic {
public int SIZE;
private int [] magicSquare;
public Magic (int size)// constructor
{
SIZE
www.eeworm.com/read/129873/14220327
txt test.txt
{一个小程序;}
read x,y;
x:=11,y:=12;
repeat
if y>10
then x:=x+2;
else y:=y+1;
until y==25;
end
write x,y;