Create a script that will accept number of times user can input data. Identify if every input is either ODD or EVEN numbers. Count the number of ODD and EVEN numbers.
Afficher commentaires plus anciens

I got the idea on how to identify whether the number is odd or even but my problem is how to input "input command in loop" base on the number give by the user?
Réponses (1)
Jonas
le 2 Mai 2021
Modifié(e) : Image Analyst
le 2 Mai 2021
just use something like this:
times=input('how many times')
numbers=zeros(1,times);
for nr=1:times
numbers(nr)=input('give number');
end
and then further processing on the numbers array
3 commentaires
Jonas
le 2 Mai 2021
sry for the bad formatting...
Image Analyst
le 2 Mai 2021
@Jonas, I fixed your bad formatting. There are icons above the text box to tell it whether lines are text or code lines. Just highlight and click the approriate button.
Jonas
le 2 Mai 2021
yes it's a bit difficult on mobile, many thanks!
Catégories
En savoir plus sur Startup and Shutdown dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!