How do I use a while loop to keep asking for input of even numbers?

3 views (last 30 days)
How do I aks user to input an even number but if the number is odd or equal to 0, it should keep asking for input?

Accepted Answer

KSSV
KSSV on 18 Jan 2019
prompt = 'Enter a number:';
S = input(prompt) ;
if mod(S,2)
S = input(prompt) ;
end
  1 Comment
adena0
adena0 on 18 Jan 2019
Edited: adena0 on 18 Jan 2019
thanks but, this was my code originally and it failed after enteriing and odd number twice. i think a while loop needs to be used i just don't know how

Sign in to comment.

More Answers (0)

Categories

Find more on Loops and Conditional Statements in Help Center and File Exchange

Products


Release

R2018a

Community Treasure Hunt

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

Start Hunting!