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.1 required=5.0 tests=BAYES_05,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,8643e392874c5028 X-Google-Attributes: gid103376,public From: Julian Day Subject: Re: Enumeration Constants Date: 2000/04/13 Message-ID: <38F5BF84.EB93A532@ghs.com>#1/1 X-Deja-AN: 610641883 Content-Transfer-Encoding: 7bit References: <8d3kqg$c4$1@news.cowan.edu.au> X-Accept-Language: en Content-Type: text/plain; charset=us-ascii X-Complaints-To: abuse@cableinet.net X-Trace: news3.cableinet.net 955629212 194.117.135.104 (Thu, 13 Apr 2000 13:33:32 BST) Organization: Green Hills Software MIME-Version: 1.0 NNTP-Posting-Date: Thu, 13 Apr 2000 13:33:32 BST Newsgroups: comp.lang.ada Date: 2000-04-13T00:00:00+00:00 List-Id: Hi Karlene, Have you recently covered case statements in your lectures by any chance? Julian Karlene wrote: > I want to define the following constants in my program but i am not sure how > to distiguish what the values are. What is meant by the values is that for > examle the small group, the values are 3, 4, 5, 6. For the Large group it > is 12 to whatever number. > > How can i show this?? > > NAME VALUE DATA TYPE ROLE > Single 1 - 2 Enumeration (group_type) Distinguishes > group size by amount of tickets purchased > Small 3 - 6 Enumeration (group_type) Distinguishes > group size by amount of tickets purchased > Medium 7 - 11 Enumeration (group_type) Distinguishes group > size by amount of tickets purchased > Large 12 - more Enumeration (group_type) Distinguishes group > size by amount of tickets purchased