Discussions
Categories
Groups
Advertisement
Child Item
Home
Topics
Technology & Internet
Computers & Technology
Computers & Technology
a little programming code pascal
elexes
how do i get a program to ask a user to input the ammount of numbers he wants to input . then ask him to input the numbers show what the numbers are and show what the smallest and largets is . also to tell then user when the number 12 was last put in and first put in
Find more posts tagged with
Quick Links
All Categories
Recent Posts
Activity
Unanswered
Groups
Best Of
Advertisement
Advertisement
Comments
kayos
Ok I don't mean to sound condesending but When did you start programming. I never did pascal(Bar Install script which is PASCAL with a difference of two for Install Shield ). Right try somethingLike this.
Ask the user for the ammount of numbers(say x) and use this to declare an array of x - 1 rows. then use a loop while/for which ever you like best
and keep asking the user for the number until the array bounds have been reached for every number you read in check if its 12 and if it is put the array subscript (say y) into a int varaable as y + 1 this let you tell the user the first time it was entered then the next time it is entered load it into a different varible (over write this one every time you come across 12 to give you the last time it was entered). then just figure out the max and min numbers and print out what ya what. QED.
Kayos
P.S. This is based on my ASM/C/C++ days but the jist should be the same for Pascal
deRanged
http://homepage.eircom.net/~clayton/homework.pas
does more or less what you want.
elexes
thx lads . but in the end i figured it .