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 | Sololearn: Learn to code for FREE!
Neuer Kurs! Jeder Programmierer sollte generative KI lernen!
Kostenlose Lektion ausprobieren
+ 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

6th Mar 2018, 2:12 AM
ibiang daniel
1 Antwort
0
a: (m >= 0 && m <= 9 && m != 3) b: (n >= 0 && n <= 7 && n % 2 != 0)
23rd May 2024, 1:27 AM
Ghost
Ghost - avatar