Forums
New posts
Search forums
Members
Current visitors
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
Search forums
Menu
Log in
Register
Install the app
Install
Forums
Archive
Archive
Java
Java is only calculating to once decimal place
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
[QUOTE="Nigel Wade, post: 2010824"] That is a purely integer calculation. 5/100 as an integer is 0. Arithmetically yes, but computationally the answer is 0, as above. Floats do, integers don't have any decimal places. You need to ensure that your calculation is performed as a floating point operation: answer = 1.0f+(entry/100.0f); [/QUOTE]
Verification
Post reply
Forums
Archive
Archive
Java
Java is only calculating to once decimal place
Top