討論串[問題] 如何輸出連續的檔名?
共 4 篇文章
首頁
上一頁
1
下一頁
尾頁

推噓0(0推 0噓 0→)留言0則,0人參與, 最新作者kobenein (哈哈哈)時間16年前 (2008/09/14 17:52), 編輯資訊
2
0
0
內容預覽:
例如迴圈從1跑到16. 每跑一次就產生一個檔案. 從 01.dat ~ 16.dat. 謝謝!. --. 發信站: 批踢踢實業坊(ptt.cc). ◆ From: 61.227.139.40.

推噓0(0推 0噓 0→)留言0則,0人參與, 最新作者latinboy (暱稱)時間16年前 (2008/09/14 23:23), 編輯資訊
0
0
0
內容預覽:
program filenameList. implicit none. integer i. character*8 filename. do i = 1, 16. write( unit = filename, * ) i, ".txt". open( unit = 1, file = file
(還有183個字)

推噓0(0推 0噓 0→)留言0則,0人參與, 最新作者sjgau (sjgau)時間16年前 (2008/09/15 17:26), 編輯資訊
0
0
0
內容預覽:
--------------------Configuration: VF0910 - Win32 Debug--------------------. Compiling Fortran.... D:\VF0910\VF0910.f90. D:\VF0910\VF0910.f90(7) : Err
(還有320個字)

推噓1(1推 0噓 3→)留言4則,0人參與, 最新作者sjgau (sjgau)時間16年前 (2008/09/15 17:45), 編輯資訊
0
0
0
內容預覽:
以下程式,測試 OK. program VF0910. implicit none. integer i. character(len=20):: string. do i=1, 16. write(unit= string, fmt= "(I2, A4)")i, '.DAT'. if (strin
(還有42個字)
首頁
上一頁
1
下一頁
尾頁