write_a_1.f90

来自「用于进行gcc测试」· F90 代码 · 共 15 行

F90
15
字号
! pr 15311! output with 'A' edit descriptor      program write_a_1      character*25 s! string = format      write(s,'(A11)') "hello world"      if (s.ne."hello world") call abort! string < format      write(s,'(A2)') "hello world"      if (s.ne."he") call abort! string > format      write(s,'(A18)') "hello world"      if (s.ne."       hello world") call abort      end

⌨️ 快捷键说明

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