|
|
发表于 2016-4-7 13:57:13
|
显示全部楼层
你用下面代码输出就知道了. U8 m' k% F: c( M, h. S' Z, e
do
5 Z- U) D; J' ~5 l: s, T* x seedTab.create;# J3 q0 I$ n8 I- j
seedTab.writeRow(1,1,0,1,"Size of demand");-- stream 1 = stream 2
! ^5 @0 [7 O# o7 I7 M; ]5 f' L seedTab.writeRow(1,2,1,0,"Interarrival time of customers");: u9 O1 z% o- C7 b" M+ S
seedTab.writeRow(1,3,1,1,"Lead time");
: \- p1 \9 @2 M% [& n1 ?% c$ { print seedTab[3,2];
5 t' N$ @, Q" U" x3 F8 m3 M8 b: H$ G5 @3 L0 M
-- ……" V$ H) o6 _, S6 T% w% ?. p
end;) F& b2 ?1 d# D; N4 W
+ i) A' t. ~# b" ~' O8 B
<Path>.writeRow(Column:<any>, Row:<any>, Value:<any> [,Value:<any>, ..., Value:<any>]);
, x% r3 }: z: j这个说的也很清楚 , T2 a0 F% O8 A. i8 k; Q0 |
writeRow(1,1,0,1,"Size of demand") 就是从 第一列 第一行开始 依次按排写入 0,1,"Size of demand" |
|