Re: [問題] 讀檔輸出檔案(多個檔案)

看板Fortran作者 (阿南)時間14年前 (2010/06/17 17:36), 編輯推噓0(001)
留言1則, 1人參與, 最新討論串2/2 (看更多)
※ 引述《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
文章代碼(AID): #1C6UoTu0 (Fortran)
討論串 (同標題文章)
文章代碼(AID): #1C6UoTu0 (Fortran)