Skip to main content

please provide a detailed version of a project for checking a number is odd or even

"^\d*[13579]$"

"^\d*[02468]$"

 

 


You can do it in taskbot, using variable operation result = number % 2

if result == 0 then

Message Box " is even"

else

Message Box " is odd"


Reply