Info
Cette question est clôturée. Rouvrir pour modifier ou répondre.
Using the while loop function
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
How do i make a while loop to loop five times if the user does not enter the correct input?
0 commentaires
Réponses (1)
Pavel Osipov
le 5 Oct 2019
Modifié(e) : Rik
le 5 Oct 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 commentaires
Cette question est clôturée.
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!