Borrar filtros
Borrar filtros

How do I use a while loop to keep asking for input of even numbers?

1 visualización (últimos 30 días)
How do I aks user to input an even number but if the number is odd or equal to 0, it should keep asking for input?

Respuesta aceptada

KSSV
KSSV el 18 de En. de 2019
prompt = 'Enter a number:';
S = input(prompt) ;
if mod(S,2)
S = input(prompt) ;
end
  1 comentario
adena0
adena0 el 18 de En. de 2019
Editada: adena0 el 18 de En. de 2019
thanks but, this was my code originally and it failed after enteriing and odd number twice. i think a while loop needs to be used i just don't know how

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Loops and Conditional Statements en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by