If problem is in power, how to write it correctly?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Try By default, numeric literals in Java are considered as ints. So, 1/3 is converted to 0 and not 0.33333 as should be the case. Qualifying it with 1D or 1F or 1.0 will solve the problem. |
|||
|
|
|
This is because |
|||
|
|