Using the while loop function
Informazioni
Questa domanda è chiusa. Riaprila per modificarla o per rispondere.
Mostra commenti meno recenti
How do i make a while loop to loop five times if the user does not enter the correct input?
Risposte (1)
Pavel Osipov
il 5 Ott 2019
Modificato: Rik
il 5 Ott 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 Commenti
darova
il 5 Ott 2019
Mr. Pavel, please use special button for code inserting
Pavel Osipov
il 6 Ott 2019
Thank you, but I don't seem to have hurt you.
darova
il 6 Ott 2019
Baby don't hurt me
Questa domanda è chiusa.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!