Effacer les filtres
Effacer les filtres

Working with while loops.

1 vue (au cours des 30 derniers jours)
Chase Viche
Chase Viche le 15 Nov 2018
Commenté : Chase Viche le 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

Réponses (1)

KSSV
KSSV le 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 commentaire
Chase Viche
Chase Viche le 16 Nov 2018
This all works except the (rem(n,1)~=0) part of the code.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Manage Products dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by