help me solve this if statement
Show older comments
could you help me solve this?
]
number = randi([0,9])
if number == 2 ||4 ||6||8
disp('number is even')
elseif number == 1||3||5||7||9
disp('number is odd')
else
disp('number is zero')
end
Answers (1)
Alan Stevens
on 18 May 2021
Edited: Alan Stevens
on 18 May 2021
Remove the ] in the top line!
Then
number = randi([0,9])
evens = [2,4,6,8];
odds = [1,3,5,7,9];
if ismember(number,evens)
disp('number is even')
elseif ismember(number,odds)
disp('number is odd')
else
disp('number is zero')
end
Categories
Find more on Dynamic System Models in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!