D
DaveRobichaud
Hey everybody!
I'm trying to build a small application that will basically generate a
range of numbers for a specified beginning and end point.
However, it also needs to "shorten" the numbers in assuming that if I
wanted a range from 2000 to 2059, the result should be 200, 201, 202,
203, 204, and 205.
Understanding that the results mean 200*, 201*, and so on.
Conversly, if I put in 2000 to 2038, it will give me results like this:
200, 201, 202, 2030, 2031, 2032, 2033, 2034, 2035, 2036, 2037, 2038.
Also, the to and from numbers are not limited to 4 digits... they can
be as high 7 or 8 digits long.
I really don't even know where to begin with this.
Any help would be greatly appreciated!
Thanks in advance,
Dave
I'm trying to build a small application that will basically generate a
range of numbers for a specified beginning and end point.
However, it also needs to "shorten" the numbers in assuming that if I
wanted a range from 2000 to 2059, the result should be 200, 201, 202,
203, 204, and 205.
Understanding that the results mean 200*, 201*, and so on.
Conversly, if I put in 2000 to 2038, it will give me results like this:
200, 201, 202, 2030, 2031, 2032, 2033, 2034, 2035, 2036, 2037, 2038.
Also, the to and from numbers are not limited to 4 digits... they can
be as high 7 or 8 digits long.
I really don't even know where to begin with this.
Any help would be greatly appreciated!
Thanks in advance,
Dave