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 :)
|
how do i divide 2 float-type numbers in a variable? ex.
how do i get 0.5 without changing the initialization? thanks in advance :) |
||||
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.
|
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). |
|||||||
|
1.0or2.0not as1or2. – AlastairG Dec 23 '10 at 10:30