|
|
发表于 2016-4-7 13:57:13
|
显示全部楼层
你用下面代码输出就知道了* I6 v; T W3 T- B2 B+ M/ C
do. h8 h/ ?6 G8 p8 c0 P$ e. S
seedTab.create;
/ A8 @6 X% R1 L. g seedTab.writeRow(1,1,0,1,"Size of demand");-- stream 1 = stream 2( `! W" Y) V3 n! e' `. t
seedTab.writeRow(1,2,1,0,"Interarrival time of customers");) L; C) T% e, k( X6 V
seedTab.writeRow(1,3,1,1,"Lead time");
# y2 z8 C; \8 k! Z+ c* L" ]9 d print seedTab[3,2];3 H; x/ S) M" Q) ^ k$ L% z
1 M% U, a0 M; S* A
-- ……8 k6 y* Y7 S: Z3 \5 C
end;9 |5 p1 E' }$ M6 y+ A
& L) X7 T* `5 [. G
<Path>.writeRow(Column:<any>, Row:<any>, Value:<any> [,Value:<any>, ..., Value:<any>]);
, S! G5 u/ c9 x- D* r- y) X& l这个说的也很清楚
6 C! l) W5 G% k6 W; ?writeRow(1,1,0,1,"Size of demand") 就是从 第一列 第一行开始 依次按排写入 0,1,"Size of demand" |
|