help me do while function
12 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Prompt the user to enter a value for height in inches (59-78) and weight in pounds (90-350). I don't know what I can't do that. I enter the height is 50, but it doesn't require me input again. it just show enter the weight.
inches = input('Enter the height in inches (59-78): ');
while (inches <59 && inches>78)
disp('Enter the height in inches (59-78): ');
end
pounds = input('Enter the weight in pounds (90-350): ');
while (pounds <90 && pounds > 350)
pounds = input('Enter the weight in pounds (90-350): ');
end
0 comentarios
Respuesta aceptada
Sean de Wolski
el 26 de Feb. de 2013
You are yusing && operators indicating that x has to be less than 59 and greater than 78. This isn't possible!
You probably mean to have a ||, the or operator.
0 comentarios
Más respuestas (3)
THANH NGUYEN
el 26 de Feb. de 2013
1 comentario
Sean de Wolski
el 26 de Feb. de 2013
Use strcmp
doc strcmp
Yopu may also need the ~ operator or not
doc not
E.g:
~strcmp('Sean','F')
THANH NGUYEN
el 26 de Feb. de 2013
Editada: Walter Roberson
el 26 de Feb. de 2013
1 comentario
Walter Roberson
el 26 de Feb. de 2013
If the gender is 'F' then it is not 'M' so the "gender ~= 'M'" part would be true. No matter what you enter, one of the tests is going to be true, and you have used "or" between the parts. Perhaps you should not have used "or".
You should also have used strcmp() like Sean wrote.
Ver también
Categorías
Más información sobre Matrices and Arrays en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!