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.2 required=5.0 tests=BAYES_00,INVALID_MSGID, REPLYTO_WITHOUT_TO_CC autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,33411c81953c1a23 X-Google-Attributes: gid103376,public From: "DuckE" Subject: Re: Ada83 Exponentiation HELP !!! Date: 1999/12/13 Message-ID: <3855ab32.0@news.pacifier.com>#1/1 X-Deja-AN: 560361662 References: <831tka$rue$1@tobruk.sydney.gecm.com> X-Priority: 3 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 X-Trace: 13 Dec 1999 18:28:02 PST, 216.65.140.120 X-MSMail-Priority: Normal Reply-To: "DuckE" Newsgroups: comp.lang.ada Date: 1999-12-13T00:00:00+00:00 List-Id: It's been years since I've dealt with evaluating things like this, but as I recall 6^(1.3) is equivalent to: Exp( 1.3 * Log( 6 ) ) Don't quote me on this, but it's somehting like that. SteveD jxredi wrote in message news:831tka$rue$1@tobruk.sydney.gecm.com... > Can anyone help me with the following : > > I understand that in Ada83, 6^3 is represented as 6**3, where 6 can be > int or real, > and 3 can only be an INTEGER. > > So how do I represent in ada83 this ..... --> 6^(1.3) where 1.3 is type > REAL. > > > Regards, > Jxredi. > >