Re: [問題] 讀檔輸出檔案(多個檔案)
※ 引述《bbbird520 (小畢)》之銘言:
: 假如我讀取多個檔案
: 並計算其中過程
: 算出的數據要輸出,檔名需跟讀的檔案對應
: 例如:我讀取5601.txt檔,輸出時為5601_1.txt檔
: 讀取5602.txt檔,輸出時為5602_1.txt檔
: .
: .
: .
: 以此類推!!
: 該如何寫呢??
EX.
character(len=8) inputname
character(len=10) outputname
do i = 1,n
write(inputname,"(i4,a4)")5600+i,'.txt'
write(outputname,"(i4,a6)")5600+i,'_1.txt'
open(1,file=inputname)
open(2,file=outputname)
read(1,*) xxxxxx
...
write(2,*) xxxxxx
enddo
當然看你的檔案各數再去調整character的長度
--
※ 發信站: 批踢踢實業坊(ptt.cc)
◆ From: 140.109.112.98
→
06/17 17:48, , 1F
06/17 17:48, 1F
討論串 (同標題文章)
本文引述了以下文章的的內容:
完整討論串 (本文為第 2 之 2 篇):
Fortran 近期熱門文章
PTT數位生活區 即時熱門文章