📄 fmt_white.f
字号:
! { dg-do run }! PR24268 Test case derived from example given by Iwan Kawrakow! Embedded spaces in format strings should be ignored.! Prepared by Jerry DeLisle <jvdelisle@gcc.gnu.org> program pr24268 real x character*13 line line = "12.34" read(line,*) x write(line,10) x 10 format(g1 * 1.4) if (line.ne." 12.34") call abort() line = "" write(line,20) x 20 format(t r 2 , g 1 1 . 4) if (line.ne." 12.34") call abort() end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -