-
-
Notifications
You must be signed in to change notification settings - Fork 7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Converting float to int #8751
Comments
I think you are asking this question in the wrong place. Try the forum or stackexchange instead. BW: looks like you are truncating the float to integer. Might what to try rounding it instead. |
The issue will be apparent if you print Serial.println(answer, 6); We have already documented the inexact nature of float in the Arduino Language Reference so I don't think any action is required on this. |
@per1234 - Perhaps the documentation could specifically mention the need to add 0.5 for converting to nearest integer? Or maybe the round() function should be documented? |
@PaulStoffregen good suggestion! I hadn't considered the bigger picture behind this issue. The truncation behavior when converting from floating point to integer types is a frequent cause of confusion for beginners. Since I already have a lot of outstanding PRs in the Language Reference repo that are requiring me to frequently resolve merge conflicts, I'm holding off on any submitting any new PRs to that repo for now. So I created a dedicated issue for your suggestion instead:
We do have an existing issue report for this: |
Hello world,
This week i found a bug, converting float to int delivers strange values, can't find out why.
This is the code I wrote:
The output is:
Hello World !!!
Answer: 1.00
B: 1
Answer: 5.00
B: 5
Answer: 25.00
B: 24
Answer: 125.00
B: 124
Somebody who can find out what goes wrong?
Thanks
The text was updated successfully, but these errors were encountered: