A code will prompt the user to try to guess my favourite colour and after 3 goes say 3 trials over, but i want to display a message after each incorrect attempt saying "Incorrect try again". How do I do this? (New user)
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Yusuf Azzam
le 23 Fév 2019
Réponse apportée : Yusuf Azzam
le 25 Fév 2019
This is code i have got so far:
fav = 'red' ;
str = 0 ;
count = 0 ;
while str == 0
count = count+1 ;
prompt = 'What is my favourite color? ';
str2 = input(prompt,'s') ;
if strcmpi(fav,str2)
str = 1 ;
disp('you got the color correct')
elseif count == 3
str = 1 ;
disp('three trials over')
end
end
0 commentaires
Réponse acceptée
Plus de réponses (1)
Brian Hart
le 23 Fév 2019
add the code
disp('Incorrect try again')
right before your very last end statement
2 commentaires
Voir également
Catégories
En savoir plus sur Programming Utilities dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!