character*100::str real*8::num str=11-30 read(str,*,iostat=ior)num !------------ after run :---------------------- ! no error report can be found since ior is 0 and num is interpreted as 11.0E-30 which seems weird.
character*100::str real*8::num str=11-30 read(str,*,iostat=ior)num !------------ after run :---------------------- ! no error report can be found since ior is 0 and num is interpreted as 11.0E-30 which seems weird.