91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

Fortran怎么讀取和寫入文件

小億
344
2024-04-12 20:21:12
欄目: 編程語言

在Fortran中,可以使用OPENREADWRITECLOSE等關鍵字來讀取和寫入文件。

下面是一個示例代碼,展示了如何讀取和寫入文件:

program file_io
  implicit none

  integer :: i, n, status
  real :: x
  character(len=50) :: filename
  character(len=50) :: line

  ! 打開文件
  filename = 'data.txt'
  open(unit=10, file=filename, status='old', action='read', iostat=status)
  if (status /= 0) then
    print*, 'Error opening file'
    stop
  end if

  ! 讀取文件中的數據
  do i = 1, 5
    read(10, '(A)', iostat=status) line
    read(line, *) n, x
    print*, 'Read from file:', n, x
  end do

  ! 關閉文件
  close(unit=10)

  ! 打開文件以寫入數據
  open(unit=20, file='output.txt', status='replace', action='write', iostat=status)
  if (status /= 0) then
    print*, 'Error opening file'
    stop
  end if

  ! 寫入數據到文件
  do i = 1, 5
    write(line, '(2I5, F10.2)') i, i*2, real(i)*2
    write(20, '(A)') trim(adjustl(line))
  end do

  ! 關閉文件
  close(unit=20)

end program file_io

在這個示例中,程序首先打開一個名為data.txt的文件,讀取其中的數據,并輸出到屏幕上。然后,程序再打開一個名為output.txt的文件,并將數據寫入到文件中。

需要注意的是,在讀取和寫入文件時,需要使用READWRITE語句,同時也需要使用OPENCLOSE語句來操作文件。

0
通化县| 平陆县| 蓝田县| 株洲县| 百色市| 池州市| 安西县| 孟津县| 台北县| 富锦市| 雅江县| 海伦市| 成武县| 惠水县| 娱乐| 宜城市| 司法| 石景山区| 阿鲁科尔沁旗| 大荔县| 赤峰市| 牡丹江市| 宝清县| 清丰县| 临高县| 遂昌县| 阿巴嘎旗| 松溪县| 大安市| 吴川市| 双牌县| 新田县| 孝感市| 阳泉市| 册亨县| 松桃| 黎城县| 莎车县| 南宫市| 拉萨市| 建阳市|