How do round a number say 83256851 to 83256900 ?
How do round a number say 83256951 to 83257000 ?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Sanket JainPosted Feb 18, 2016, 7:35 AM
double i2 = Convert.ToDouble(i2) / 100;
int i3 = Convert.ToInt32(i2);
int i4 = i3 * 100;