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,7ef7640503406872 X-Google-NewGroupId: yes X-Google-Attributes: gida07f3367d7,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news2.google.com!news1.google.com!news.glorb.com!feeder.erje.net!eternal-september.org!feeder.eternal-september.org!.POSTED!not-for-mail From: Ludovic Brenta Newsgroups: comp.lang.ada Subject: Re: I need feedback Date: Tue, 14 Jun 2011 23:50:58 +0200 Organization: A noiseless patient Spider Message-ID: <87aadk5bgd.fsf@ludovic-brenta.org> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Injection-Info: mx04.eternal-september.org; posting-host="d3+G9BnUBPBoieKlliQQlQ"; logging-data="27130"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1/0pzfRtmK0QsOktTQTM3HJ" User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.3 (gnu/linux) Cancel-Lock: sha1:qteo9BdKiVtiN/q85gK1F7Ag5rI= sha1:BPx+82N9OoFHrwr/Bv6kOy/TP2s= Xref: g2news2.google.com comp.lang.ada:20801 Date: 2011-06-14T23:50:58+02:00 List-Id: juanmiuk writes: > My name is Juan Miguel and I have ADHD. Since I have long wanted to > learn Ada but I could not learn, because the medication was not > correct and I could not concentrate properly. I returned to writing > simple programs to get base. All I want is to tell me how I am doing. > Thanks in advance. You're doing great. I think your next step will be to turn Formateo_Salida_1 and Formateo_Salida_2 into one subprogram taking three parameters. Also, you do not need parentheses around conditions: if (A >= B) then can also be written as if A >= B then One last remark: personally, I have found that mixing the English keywords of Ada with non-English names distracts me when reading the source. I prefer everything to be in English even though it is not my native language; you should experiment with that and see if that helps you concentrate. -- Ludovic Brenta.