Filter löschen
Filter löschen

i want to get an error if the user enters an input other than 1 to 16. even negative and zero should give error

1 Ansicht (letzte 30 Tage)
while element > 16
disp 'Error you entered a a number greater than 16. Please enter again!'
element =input(prompt);
end

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 2 Jan. 2018
while true
element = input(prompt);
if ismember(element, 1:16); break; end
end
  5 Kommentare
Walter Roberson
Walter Roberson am 3 Jan. 2018
"Why ugly while loop in this case?"
Situations like this almost always want to keep prompting until valid input is entered.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Loops and Conditional Statements finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by