i need write a reverseInput function that will take as many numbers as
user inputs and display them back in a descending order.
for example
enter a number 6,
enter a number 12,
enter a number 4,
,,.....
out put the number in descending order is 12, 6, 4...
i can't used array.
if i can't used array how am i suppose to store the number??



LinkBack URL
About LinkBacks





I would assume this is based upon the number given by the user. For example, you could return when the user enters -1.