IDNLearn.com provides a comprehensive platform for finding accurate answers. Find the information you need quickly and easily with our comprehensive and accurate Q&A 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
Thank you for being part of this discussion. Keep exploring, asking questions, and sharing your insights with the community. Together, we can find the best solutions. Discover the answers you need at IDNLearn.com. Thanks for visiting, and come back soon for more valuable insights.