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-Thread: 103376,91965a012526b259 X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!news1.google.com!proxad.net!213.200.89.82.MISMATCH!tiscali!newsfeed1.ip.tiscali.net!border2.nntp.ams.giganews.com!border1.nntp.ams.giganews.com!nntp.giganews.com!news-in.ntli.net!newsrout1-win.ntli.net!ntli.net!news.clara.net!wagner.news.clara.net!peer-uk.news.demon.net!kibo.news.demon.net!news.demon.co.uk!demon!not-for-mail From: Simon Wright Newsgroups: comp.lang.ada Subject: Re: Float to String Date: 13 Nov 2004 16:49:08 +0000 Organization: Pushface Sender: simon@smaug.pushface.org Message-ID: References: <220c7e104b45a9c8f59f8adbbb88f08d@localhost.talkaboutprogramming.com> NNTP-Posting-Host: pogner.demon.co.uk Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: news.demon.co.uk 1100364949 18354 62.49.19.209 (13 Nov 2004 16:55:49 GMT) X-Complaints-To: abuse@demon.net NNTP-Posting-Date: Sat, 13 Nov 2004 16:55:49 +0000 (UTC) User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.1 Xref: g2news1.google.com comp.lang.ada:6189 Date: 2004-11-13T16:49:08+00:00 List-Id: "Ginduskina" writes: > Hello. This may seem a syupid question, given the kind of replies > users have posted so far yet, but.... I can't understand how to pass > from float to string.. i don't need much precision, i just need the > instruction/s i need to use to get my string with my float > number... which will have its point numbers, and the exponent > numbers Hi, with Ada.Text_IO; use Ada.Text_IO; procedure Floats is F : Float; begin -- from string .. F := Float'Value ("0.12345"); -- to string, portably ... Put_Line ("F is " & Float'Image (F)); -- to string, GNAT-only Put_Line ("F is " & F'Img); end Floats; here, gives smaug.pushface.org[2]$ gnatmake floats gcc -c floats.adb gnatbind -x floats.ali gnatlink floats.ali smaug.pushface.org[3]$ ./floats F is 1.23450E-01 F is 1.23450E-01 -- Simon Wright 100% Ada, no bugs.