17.06.2013, 23:45
Fearton your code wouldn't work as he wants, because with the < operator you're basically saying that the number has to be below the defined number.. for example. if( number 1 < number 2 ) this means number 2 is less than number 1 yea, but this would be number 1 then, the difference between the < and the <= tags is that with the <= it also checks for the second number.
if( number 1 <= number 2 )
if( number 1 <= number 2 )