中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

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
三都| 搜索| 宜宾市| 彭山县| 海南省| 顺平县| 丰镇市| 清河县| 伊吾县| 浪卡子县| 太白县| 东莞市| 闵行区| 永平县| 鱼台县| 定安县| 新建县| 北安市| 正定县| 民县| 邢台县| 汪清县| 广宁县| 吉隆县| 龙南县| 湟源县| 乳源| 醴陵市| 修武县| 盐津县| 治多县| 腾冲县| 遵义县| 三穗县| 忻城县| 乐安县| 长海县| 左贡县| 西吉县| 马山县| 漳浦县|