代码搜索:repeat
找到约 6,690 项符合「repeat」的源代码
代码结果 6,690
www.eeworm.com/read/378188/9242652
in mod1a.in
10 10000 ! Vector length n and repeat count parameter nfixed
20 10000 ! Repeat count nrep = Max( 10, Min( Int( nfixed/n )*100, mrep ) ),
30 10000 ! where mrep = 10*nfixed.
40 10000
www.eeworm.com/read/377944/9256600
txt websphere快速入门(14).txt
作者:easyinfonet
email: easyinfonet@sina.com.cn
日期:2001-2-16 11:35:11
5.3 JSP 语法
JSP 文件(扩展名为 .jsp)可以包含指令(或称为指示语句)、Class-wide 变量和方法、直接插入的 Java 代码(scriptlet)、访问 JavaBean、变量数据的 HTML 模型、变量数据的 Java 表
www.eeworm.com/read/181271/9260844
tny sample.tny
{ Sample program
in TINY language -
computes factorial
}
read x; { input an integer }
if 0 < x then { don't compute if x
www.eeworm.com/read/376607/9312153
java test4.java
procedure test;
var a,b,c :integer;
begin
a:=0; /*赋值语句*/
b:=10;
while ab; /*repeat语句*/
end.
/*赋值语句、whil
www.eeworm.com/read/374732/9387377
asm test2.asm
DATAS SEGMENT
;此处输入数据段代码
number dw 5475
addr dw number
count dw ?
DATAS ENDS
STACKS SEGMENT
;此处输入堆栈段代码
STACKS ENDS
CODES SEGMENT
ASSUME CS:C
www.eeworm.com/read/178219/9413613
vwf clock.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/374010/9423713
m nnigls.m
function [W1,W2,lambda,GAMMA]=nnigls(NetDef,NN,W1,W2,trparms,repeat,GAMMA,Y,U)
% NNIGLS
% ------
% Train a multi-output NNARX model using an iterated generalized
% least square
www.eeworm.com/read/373036/9476772
tny sample.tny
{ Sample program
in TINY language -
computes factorial
}
read x; { input an integer }
if 0 < x then { don't compute if x
www.eeworm.com/read/372666/9498923
pl0 test1.pl0
var a,b,x,y,g,m;
procedure swap;
var temp;
begin
temp := x;
x := y;
y := temp
end;
procedure mod;
x := x-x/y*y;
begin
read(a,b);
x := a;
y := b;
call mod;
repeat
begin
www.eeworm.com/read/176251/9510628
bas 3d.bas
#!/usr/local/bin/sbrun -g
' 3d.bas
' 07/06/2000
d=100:t=.7:p=1.3
redraw
repeat
k=inkey$
if k="1":t=t+.1:redraw
elif k="2":t=t-.1:redraw
elif k="3":p=p+.1:redraw
elif k="4":p=p-.1:redraw
elif k=