help me solve this if statement

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

回答(1 个)

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

类别

帮助中心File Exchange 中查找有关 Dynamic System Models 的更多信息

产品

标签

Community Treasure Hunt

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

Start Hunting!

Translated by