比如有一個整數數組 m[200],怎么才能把它全部寫入文本文件?
for i=1 to 200print m[i] next i
如果是VBopen "c:\file" for output as #1for i=1 to 200print #1, m(i) nextclose