From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,efc31958da938b4d X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2001-10-20 22:04:16 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!newsfeed.berkeley.edu!ucberkeley!intgwpad.nntp.telstra.net!news-server.bigpond.net.au!not-for-mail From: Dale Stanbrough Newsgroups: comp.lang.ada Subject: Re: No sientific notation... Organization: RMIT References: <3BD20954.D72177F5@ida.his.se> User-Agent: MT-NewsWatcher/3.1 (PPC) Message-ID: Date: Sun, 21 Oct 2001 05:04:13 GMT NNTP-Posting-Host: 144.132.82.11 X-Complaints-To: news@bigpond.net.au X-Trace: news-server.bigpond.net.au 1003640653 144.132.82.11 (Sun, 21 Oct 2001 15:04:13 EST) NNTP-Posting-Date: Sun, 21 Oct 2001 15:04:13 EST Xref: archiver1.google.com comp.lang.ada:14985 Date: 2001-10-21T05:04:13+00:00 List-Id: a98mican@ida.his.se wrote: > I want to print out a float without the sientific notation. > Hence 1.000 E1 should be 10.000 > How do I do this? Put (My_Float, Fore => 4, Aft => 4, Exp => 0); 4 spaces beFORE the decimal point, 4 AFTer, no EXPonent. Dale