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

There must be some logic behind this calculation. But I am not able to get it. The normal mathematics does not result in such behavior. Can anyone help me out in explaining why

printf ("float %f \n", 2/7 * 100.0); results in printing 1.000000

Why so? I am not understanding the reason

share|improve this question
5  
I doubt it. It should print 0.0, since 2/7 = 0 (two as an integer goes 0 times in seven). – Mats Petersson Jan 23 at 23:55
This should give 0.0; see e.g. ideone.com/V661TJ. – Oli Charlesworth Jan 23 at 23:56
1  
It should also print float in front of the number, make sure you pulled the correct line of output. – Jesus Ramos Jan 23 at 23:58

1 Answer

up vote 4 down vote accepted

Integer division. 2/7 = 0 as an integer, 0 * 100.0 = 0.0 as a float.

Do 2.0/7 * 100.0 to get the answer you're looking for.

share|improve this answer
yep good ol integer division. force it to a float: 2.0/7.0 – Byron Whitlock Jan 23 at 23:55
3  
Like my comment above, 2/7 is zero, always. – Mats Petersson Jan 23 at 23:55
@MatsPetersson True, I meant to write 0. But i was copying the OP's code and forgot :\ – Jesus Ramos Jan 23 at 23:55

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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