comp.lang.ada
 help / color / mirror / Atom feed
From: Simon Wright <simon@pushface.org>
Subject: Re: Integer Overflow Question.
Date: Mon, 25 Aug 2014 18:21:43 +0100
Date: 2014-08-25T18:21:43+01:00	[thread overview]
Message-ID: <lysikkiixk.fsf@pushface.org> (raw)
In-Reply-To: 84ce2caf-0a48-4952-8703-af1c0fabe583@googlegroups.com

austin.obyrne769@btinternet.com writes:

> Could you please set out the Ada-95 sourcecode for defining an integer
> variable called "CipherText" in the range say of 8 decimal digits to
> 12 decimal digits. I can do the others myself once I know what to do.

This may help:

with Ada.Text_IO;
procedure Obyrne is
   type Ciphertext_Integer is range -10 ** 12 .. 10 ** 12;
begin
   Ada.Text_IO.Put_Line
     ("first is " & Ciphertext_Integer'Image (Ciphertext_Integer'First)
        & ", last is " & Ciphertext_Integer'Image (Ciphertext_Integer'Last));
end Obyrne;

With up-to-date GNAT, this outputs

first is -1000000000000, last is  1000000000000

  reply	other threads:[~2014-08-25 17:21 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-08-25 11:21 Integer Overflow Question austin.obyrne769
2014-08-25 11:46 ` G.B.
2014-08-25 12:58   ` austin.obyrne769
2014-08-25 13:09     ` Simon Clubley
2014-08-25 13:29       ` austin.obyrne769
2014-08-25 13:44         ` Simon Clubley
2014-08-25 13:34     ` Aay Jay Chan
2014-08-25 15:09       ` austin.obyrne769
2014-08-25 17:02       ` austin.obyrne769
2014-08-25 17:21         ` Simon Wright [this message]
2014-08-25 17:56           ` austin.obyrne769
2014-08-25 19:38           ` austin.obyrne769
2014-08-25 17:40         ` Simon Clubley
2014-08-25 18:09           ` austin.obyrne769
2014-08-25 12:20 ` gautier_niouzes
2014-08-25 12:54   ` austin.obyrne769
replies disabled

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox