How do you only display the last 5 digits of a number?
Example input:
123456789
Would return: 56789
56789
I suggest using the modulus if working with integerss:
int someNumber = 123456789; int lastFive = someNumber % 100000;
Something like that