A little question because I'm having a doubt Can we write 90 < x < 180 in GE ? Or should we write x > 90 && x < 180 ?
Posted: Sun May 29, 2005 7:27 am
by Chai
the first one i never try it's befor " 90 < x < 180 "
acturay i write the second one
if (x > 90 && x < 180){ bar bar bar ..... }
and it's work.
Posted: Sun May 29, 2005 1:07 pm
by ondy1985
Why don't you try it? Ok, I have tried it because I was courious too. It seems that the "90 < x < 180" thing doesn't work. I thought it would not work as this wouldn't work in C++ either, but one never know.