11 Ağustos 2007 Cumartesi

Round in Java

Math.ceil(1.1); // Returns 2
Math.ceil(1.9); // Returns 2
Math.floor(1.1); // Returns 1
Math.floor(1.9); // Returns 1


0 Comments: