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.

1 view (last 30 days)
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
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
Image Analyst
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.

Sign in to comment.

Categories

Find more on Programming 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!