Right now i'm trying this:
int a = round(n) ;
where n is a double but its not working. What am i doing wrong?
|
What is the return type of the If this is the So, you will have to cast the return value:
|
|||
|
|
|
|||
|
|
|
Rounding double to the "nearest" integer like this: 1.4 -> 1 1.6 -> 2 -2.1 -> -2 -1.3 -> -1 -1.5 -> -2
You can change condition (result<0.5) as you prefer. |
||||
|
|
|
|||
|
You really need to post a more complete example, so we can see what you're trying to do. From what you have posted, here's what I can see. First, there is no built-in round() method. You need to either call Math.round(n), or statically import Math.round, and then call it like you have. |
|||
|
|
round()method in the same class? Did youimport static java.lang.Math.*? Etc.. There are a lot of ways to round numbers and thus also a lot of possible answers. In other words, your question is vague and ambiguous and can't be reasonably answered in its current form. It's shooting in the dark. – BalusC Apr 16 '10 at 17:09