<<<
The Math class
Index
The Math.pow method
>>>
23. The Math.round method
long
result = Math.round(
1
.
667
);
// result is 2
int
result = Math.round(
1
.
49
F);
// result is 1
<<<
The Math class
Index
The Math.pow method
>>>