I have a list of numbers i need to analyze, however for this just assume I only need to analyze one. I am given a six to nine digit number which I need to break into pieces from right to left. The right three digits represent an ASCII value while the middle represent a y position and the left three represent the x position, if there are no "left three" the number is assumed to be zero for the x value.
I was thinking that it might be possible to do this by breaking the number into its digits then placing each digit in an array, however I don't know how to do this if it is possible.
Does anyone have suggestions how to do this? Any feedback would be greatly appreciated.
I was thinking that it might be possible to do this by breaking the number into its digits then placing each digit in an array, however I don't know how to do this if it is possible.
Does anyone have suggestions how to do this? Any feedback would be greatly appreciated.
Comment