Hi,
This question is from Dan Chisholm's exam 1, section Operators, question 8.
This code prints... 2,true
I am having trouble with the 'true' part. My understanding is that innermost parethesis are computed first (y==((5/3)*3 + (2))) and that /, *, and % have the same level of precedence so I come up with (y==7) which would be false. Where am I going wrong!!!
Thanks,
Steve