Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

how do i divide 2 float-type numbers in a variable?

ex.

float num1 = 1;
float num2 = 2;

float res = num1/num2;

how do i get 0.5 without changing the initialization?

thanks in advance :)

share|improve this question
5  
You do get 0.5. So I don't understand your question. Please clarify – Paul Dec 23 '10 at 9:49
What are you currently getting? You should get 0.5 – Argote Dec 23 '10 at 9:54
You should initialise floating point numbers as 1.0 or 2.0 not as 1 or 2. – AlastairG Dec 23 '10 at 10:30
Your code will result in 0.5. So what's your problem? – Neilvert Noval Dec 23 '10 at 10:36

closed as not a real question by sje397, Vladimir, icecrime, Paul R, Steve Jessop Dec 23 '10 at 10:47

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

Are you really using the values shown in your example (1, 2, 0.5) ? If not, you might have a precision issue. Use double to get better precision or use printf with limited decimals to round your number to a precision that can be handled in a float before printing it. A float is only 4 bytes on most systems so you cannot get high precision with it.

You can look here for more details on the precision: http://en.wikipedia.org/wiki/Single_precision

The values 1, 2 and 0.5 can be represented correctly in a float so your problem might be different (Thank you Alex for your comment).

share|improve this answer
1  
Float values can correctly express the value 1, 2 and 0.5 with exact precision. The division operator according to IEEE754 must give 0.5 in this case. He should get 0.5, unless he has a non-conforming compiler or CPU, which I really doubt. – Alex Dec 23 '10 at 10:32
Thank you Alex. You're right, my assumption must be bad or the real numbers used by John are not those he put in the question. Anyway my answer is wrong considering the values given in the example. I will edit it. – Benoit Thiery Dec 23 '10 at 10:37

Not the answer you're looking for? Browse other questions tagged or ask your own question.