eof_1.f90

来自「Mac OS X 10.4.9 for x86 Source Code gcc」· F90 代码 · 共 19 行

F90
19
字号
! { dg-do run }! Program to test for proper EOF errors when reading past the end of a file.! We used to get this wrong when a formatted read followed a list formatted! read.program eof_1  character(len=5) :: s  open (unit=11, status="SCRATCH")  write (11, '(a)') "Hello"  rewind(11)  read(11, *) s  if (s .ne. "Hello") call abort  read(11, '(a5)', end=10) s  call abort10 continue  close (11)end

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?