Click here to Skip to main content
15,894,180 members

Comments by suprsnipes (Top 1 by date)

suprsnipes 11-Aug-13 3:11am View    
Thanks to all of your suggestions, I did actually get to the point of and abandoned it.

int value = 4999;
int v = (value/10)*10;

but never thought just to add the number like suggested;

int value = 4999;
int v = (value/10)*10 +2;

Very much appreciated.
Regards,
suprsnipes