hi all,
I did it,
accept=input('do you want to play again, Yes(Y,y), No(N,n); \n','s');
while accept~='Y'||accept~='y'||accept~='N'||accept~='n'
accept=input('do you want to play again, Yes(Y,y), No(N,n); \n','s');
end
and it is not working. I couldn't save quastion of while loop can anyone help me ?

1 commentaire

Stephen23
Stephen23 le 4 Mai 2020
Modifié(e) : Stephen23 le 4 Mai 2020
Given A~=B, can you give a value of X which will make this statement false?:
X~=A || X~=B

Connectez-vous pour commenter.

 Réponse acceptée

Walter Roberson
Walter Roberson le 3 Mai 2020

0 votes

Use strcmp() or strcmpi() or ismember()
Using ~= together with "||" will fail if the user enters more than one character.

Plus de réponses (0)

Catégories

En savoir plus sur Signal Processing Toolbox dans Centre d'aide et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by