fortran中输出文件名与参数如何关联起来?

2024-12-15 23:39:31
推荐回答(1个)
回答1:

比如a从1,循环到100。要求输出 00001.txt , 00002.txt , 00003.txt 直到 00100.txt 如下:

character(9) :: cFilename

integer a
Do a = 1 , 100
write( cFilename , '(i05.5,a4)' ) a , '.txt'
Open ( 12 , File = Trim( cFilename ) )
!//写入文件
Close( 12 )
End Do