+ 1
Construct a logical expression to represent...a)m is between 0-9 inclusive but not equal to 3. b) n is btw 0 -7 but not even
test questions I need to solve for later purposes
1 Réponse
0
a: (m >= 0 && m <= 9 && m != 3)
b: (n >= 0 && n <= 7 && n % 2 != 0)