comp.lang.ada
 help / color / mirror / Atom feed
* Newbie Q
@ 2005-09-20  1:11 Larry Luther
  2005-09-20  4:09 ` Jim Rogers
                   ` (2 more replies)
  0 siblings, 3 replies; 12+ messages in thread
From: Larry Luther @ 2005-09-20  1:11 UTC (permalink / raw)


I saw the following example in "Ada Programming" Wiki book:

if Temperature >= Degrees'(40.0) then
    Put_Line ("It's extremely hot");
elsif Temperature in Degrees'(30.0 .. 39.0) then
    Put_Line ("It's hot");
elsif Temperature in Degrees'(20.0 .. 29.0) then
    Put_Line ("It's warm");
elsif Temperature in Degrees'(10.0 .. 19.0) then
    Put_Line ("It's cool");
elsif temperature in Degrees'(0.0 .. 9.0) then
    Put_Line ("It's cold");
else
    Put_Line ("It's freezing");
end if;

What happens at 29.5 degrees?
I'm assuming that "Temperature in Degrees'(20.0 .. 29.0)" will test
the interval Temperature >= 20.0 through Temperature <= 29.0.
So temperatures between 29.0 and 30.0 will be considered "freezing".

Larry





^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2005-09-21 17:24 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-09-20  1:11 Newbie Q Larry Luther
2005-09-20  4:09 ` Jim Rogers
2005-09-20  5:48   ` Martin Dowie
2005-09-20 11:52   ` Dr. Adrian Wrigley
2005-09-20 13:33     ` Martin Dowie
2005-09-21 17:24     ` Martin Dowie
2005-09-20  4:09 ` Samuel Tardieu
2005-09-20  5:52   ` Simon Wright
2005-09-20  6:28     ` Samuel Tardieu
2005-09-20 16:26   ` Martin Krischik
2005-09-21  7:27     ` Samuel Tardieu
2005-09-20  7:58 ` Dmitry A. Kazakov

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