Clear Filters
Clear Filters

Working with while loops.

1 view (last 30 days)
Chase Viche
Chase Viche on 15 Nov 2018
Commented: Chase Viche on 16 Nov 2018
I am having problems setting this up "In the main script file, prompt the user for ? through appropriate use of an input command (doc input) and while loop (doc while) to ensure that ? is an integer value (doc rem) and greater than or equal to 1. Also, prompt the user for ? through appropriate use of an input command and while loop to ensure that ? is a real value (doc isreal) and is greater than or equal to 0.5." This is what I have but it isn't working correctly.
clear
clc
n = input(['Enter value for n >> ']);
while ((n >= 1) && (rem(n,1)~=0))
disp(['The answer must be an integer and greater than or equal to 1'])
n = input('Enter value for n >> ');
end
x = input(['Enter value for x >> ']);
while ((isreal(x)) && (x >= 0.5))
disp(['The answer must be real and greater than or equal to 0.5'])
x = input(['Enter value for x >> ']);
end

Answers (1)

KSSV
KSSV on 16 Nov 2018
n = input('Enter value for n >> ');
while ~((n >= 1) && (rem(n,1)~=0))
disp('The answer must be an integer and greater than or equal to 1')
n = input('Enter value for n >> ');
end
x = input('Enter value for x >> ');
while ~((isreal(x)) && (x >= 0.5))
disp('The answer must be real and greater than or equal to 0.5')
x = input('Enter value for x >> ');
end
  1 Comment
Chase Viche
Chase Viche on 16 Nov 2018
This all works except the (rem(n,1)~=0) part of the code.

Sign in to comment.

Categories

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