Path: utzoo!utgpu!news-server.csri.toronto.edu!rutgers!cs.utexas.edu!uunet!sobeco!laporte From: laporte@sobeco.com (p.laporte) Newsgroups: comp.sys.mips Subject: bug in fortran (f format) Message-ID: <1990Jul24.210412.4279@sobeco.com> Date: 24 Jul 90 21:04:12 GMT Organization: Sobeco Group - Montreal, Canada Lines: 23 In this small program we demonstrate that f format on output does not distinguish between infinity and zero where g format does. implicit double precision (a-h,o-z) a = 0.0 b = 2.0 c = b / a write(*,13) a, b, c 13 format(3f20.8) write(*,14) a, b, c 14 format(3g20.8) write(*,17) a, b, c 17 format(3z20) end Has anyone had this problem an found a solution Is it fixed in 2.10 or 2.11 ? Tks Pierre Laporte laporte@Sobeco.com