25.03.2013, 17:44
something didn't look good to me
Hmm.
1st one
meaning
if 20 is the same/bigger then 15
AND
if 20 is the same/lower then 30
2nd way
meaning:
if 20 is same/smaller then 15
AND
if 20 is same/samller then 30
NOT the same
Hmm.
1st one
pawn Код:
if(20 >= 15 && 20 <= 30)
if 20 is the same/bigger then 15
AND
if 20 is the same/lower then 30
2nd way
pawn Код:
if(15 <= 20 <= 30) {
if 20 is same/smaller then 15
AND
if 20 is same/samller then 30
NOT the same