How do I read this

Hi guys,

I am a new C++ student.

I am having trouble to understand the following code which is from the lecture note:

 
(205 * c > d / 1.6)


Thanks.
it reads : c times 205 is greater than d divided by 1.6
c * 205 > d / 1.6
Some additional brackets may help:

(205 * c) > (d / 1.6)
aha... Thanks heaps.
Topic archived. No new replies allowed.