How do I read this
Jun 20, 2013 at 4:53am
Hi guys,
I am a new C++ student.
I am having trouble to understand the following code which is from the lecture note:
Thanks.
Jun 20, 2013 at 4:56am
it reads : c times 205 is greater than d divided by 1.6
c * 205 > d / 1.6
Jun 20, 2013 at 4:57am
Some additional brackets may help:
(205 * c) > (d / 1.6)
Jun 20, 2013 at 4:58am
aha... Thanks heaps.
Topic archived. No new replies allowed.