Question
MATLAB Prompt the user to enter a positive integer number xx. If the user does not enter a positive integer, prompt the user again (continually,
MATLAB
Prompt the user to enter a positive integer number xx. If the user does not enter a positive integer, prompt the user again (continually, if necessary) until the user successfully enters a positive whole number. This process of validating a user's input is sometimes known as input validation, while checking for erroneous input more generally is known as error trapping. Once the user has successfully entered a positive integer, prompt the user to enter xx numbers. Once the user has entered their xx numbers, print the average of their xx numbers to the screen. Hint: An interesting approach to this problem is to see if the floor and the ceiling of the input are equal using the floor and ceil commands, respectively. Checking if the user has entered inf or NaN input is harder, so neglect these two special cases.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started