7 lines
356 B
Plaintext
7 lines
356 B
Plaintext
-- MAXScript : Even or Odd : N.H. 2019
|
|
-- Open the MAXScript Listener for input and output
|
|
userInt = getKBValue prompt:"Enter an integer and i will tell you if its Even or Odd : "
|
|
if classOf userInt != Integer then print "The value you enter must be an integer"
|
|
else if (Mod userInt 2) == 0 Then Print "Your number is even"
|
|
else Print "Your number is odd"
|