Effacer les filtres
Effacer les filtres

How to check two conditions?

4 vues (au cours des 30 derniers jours)
Omar B.
Omar B. le 9 Fév 2022
Commenté : Omar B. le 11 Fév 2022
How can I check two conditions in if and elseif statment? When I run the following code, I got the last sentence " Your input is negative and even number "
function output=even_or_odd(n)
n = 'Insert a number: ';
x = input(n);
if x>=0 & rem(n,2)==0
disp('Your input is positive and even number ');
elseif x>=0 & rem(n,2)~=0
disp('Your input is positive and odd number ');
elseif x<0 & rem(n,2)==0
disp('Your input is negative and even number ');
else
disp('Your input is negative and even number ');
end
end

Réponse acceptée

David Hill
David Hill le 9 Fév 2022
function output=even_or_odd()
x = input('Insert a number: ');
if mod(x,2)==0&&x>=0
output='Your input is positive and even number';
elseif mod(x,2)==1&&x>=0
output='Your input is positive and odd number';
elseif mod(x,2)==0&&x<0
output='Your input is negative and even number';
else
output='Your input is negative and odd number';
end
end
  5 commentaires
Omar B.
Omar B. le 11 Fév 2022
I am working with just scalars. In my code I used & not &&.
Omar B.
Omar B. le 11 Fév 2022
Thank you so much. I got it.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Matrices and Arrays dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by