Page 1 of 1

90 < x < 180

PostPosted: Sat May 28, 2005 9:17 am
by ingsan
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 ?

PostPosted: 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. :D

PostPosted: 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.

PostPosted: Sun May 29, 2005 3:43 pm
by ingsan
Thanks Guys :wink: