make input positive mandatory
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Colby Jennings
el 4 de Mzo. de 2021
Comentada: Colby Jennings
el 4 de Mzo. de 2021
so i am trying to make this code have the user enter a positive integer, and if it isnt positive, then it needs to ask them over and over again until a positive integer is inputted. then continue with the code, but my code is only asking like 3 times im new to coding and matlab, can anyone help me out?
2 comentarios
Respuesta aceptada
David Hill
el 4 de Mzo. de 2021
while 1
a=input('Please input a postive integer');
if isequal(a,floor(a))&&a>0
break;
end
display('a is not a positive integer');
end
Más respuestas (0)
Ver también
Categorías
Más información sobre Loops and Conditional Statements en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!