I cant seem to find the answer im looking for regarding a simple question. How to round up any number to the nearest int?
I.e. whether the number is 0.2, 0.7, 0.2222, 0.4324, 0.99999 i would what the outcome to be 1.
So far I have
int b = (int) Math.ceil(a / 100);
Doesnt seem to be doing the job tho,
Thanks in advance
ahas integer type. – Nikita Rybak Dec 27 '10 at 18:02