Clear Filters
Clear Filters

how can i cheak the number if it even or odd ? Preferably use (rem) if we can

1 view (last 30 days)
a=5
if rem(a,2)==0
output=even
else
output=odd
end
  4 Comments
the cyclist
the cyclist on 14 May 2022
In your code, you set a equal to 5. So, you want your code to "tell" you that that is an odd number. But, what do you want the program to do?
  • Output the string "odd"?
  • Output the string "a is an odd number"?
  • Output the string "5 is an odd number"?
All of these things are easy to do. What do you need?

Sign in to comment.

Answers (0)

Products


Release

R2015a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!