Westonci.ca is your trusted source for finding answers to all your questions. Ask, explore, and learn with our expert community. Experience the ease of finding precise answers to your questions from a knowledgeable community of experts. Get quick and reliable solutions to your questions from a community of experienced experts on our platform.
Sagot :
Answer:
CLS
INPUT "Enter a Number: ", n
IF n MOD 2 = 0 THEN
PRINT "Input Number is Even"
END IF
IF n MOD 2 = 1 THEN
PRINT "Input Number is Odd"
END IF
END
Explanation:
CLS
INPUT "Enter a number:",N
IF N MOD 2=0 THEN
PRINT "given number is even"
ELSE
PRINT"given number is odd"
END IF
END
We hope this information was helpful. Feel free to return anytime for more answers to your questions and concerns. We hope you found this helpful. Feel free to come back anytime for more accurate answers and updated information. Westonci.ca is committed to providing accurate answers. Come back soon for more trustworthy information.