Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

Using the while loop function

1 Ansicht (letzte 30 Tage)
Jose Grimaldo
Jose Grimaldo am 5 Okt. 2019
Geschlossen: MATLAB Answer Bot am 20 Aug. 2021
How do i make a while loop to loop five times if the user does not enter the correct input?

Antworten (1)

Pavel Osipov
Pavel Osipov am 5 Okt. 2019
Bearbeitet: Rik am 5 Okt. 2019
fa1=false;
%fa2=true;
k=0;
while k<5
k=k+1;
if fa1==false
disp('you answer is bad, try again. ');
disp('attempt = ');disp(5-k);
else
disp('you answer is good');
break;
end%if
end%while
  4 Kommentare
Pavel Osipov
Pavel Osipov am 6 Okt. 2019
Thank you, but I don't seem to have hurt you.
darova
darova am 6 Okt. 2019
Baby don't hurt me

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by