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.
Show older comments

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?
Answers (1)
Jonas
on 2 May 2021
Edited: Image Analyst
on 2 May 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 Comments
Jonas
on 2 May 2021
sry for the bad formatting...
Image Analyst
on 2 May 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
on 2 May 2021
yes it's a bit difficult on mobile, many thanks!
Categories
Find more on MATLAB in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!