To express
"if m is greater than 1 but less than or equal to 5"
is it
or does it have to be two statements
thanks
"if m is greater than 1 but less than or equal to 5"
is it
Code:
if (m > 1 && <=5)
Code:
if (m > 1) && if (m<= 0.5)
Comment