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=0.6 required=5.0 tests=BAYES_00,TO_NO_BRKTS_FROM_MSSP autolearn=no 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-22 09:27:09 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!feed1.uncensored-news.com!propagator-la!news-in-la.newsfeeds.com!news-in.superfeed.net!newsranger.com!www.newsranger.com!not-for-mail Newsgroups: comp.lang.ada From: Ted Dennison References: <3BD20954.D72177F5@ida.his.se> Subject: Re: No sientific notation... Message-ID: <_MXA7.38354$ev2.44883@www.newsranger.com> X-Abuse-Info: When contacting newsranger.com regarding abuse please X-Abuse-Info: forward the entire news article including headers or X-Abuse-Info: else we will not be able to process your request X-Complaints-To: abuse@newsranger.com NNTP-Posting-Date: Mon, 22 Oct 2001 12:26:34 EDT Organization: http://www.newsranger.com Date: Mon, 22 Oct 2001 16:26:34 GMT Xref: archiver1.google.com comp.lang.ada:15031 Date: 2001-10-22T16:26:34+00:00 List-Id: In article <3BD20954.D72177F5@ida.his.se>, a98mican@ida.his.se says... >I want to print out a float without the sientific notation. >Hence 1.000 E1 should be 10.000 >How do I do this? My personal favorite way is to convert it to a fixed-point type (eg: Duration) and take the 'image of that. Since you want the decimal point fixed on your display, use a type that is meant for that. Text_IO.Put_Line (Duration'image(Duration(Freds_Float))); --- T.E.D. homepage - http://www.telepath.com/dennison/Ted/TED.html No trees were killed in the sending of this message. However a large number of electrons were terribly inconvenienced.