Write a function to ask for given number and report whether they are between 10 and 100 or not
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
please try
2 comentarios
Rik
el 18 de Nov. de 2020
Editada: Rena Berman
el 7 de Mayo de 2021
Why did you flag your own question and the answer?
Respuestas (1)
CP
el 7 de Mzo. de 2019
This is extrememly simple.
function checkNumber()
tmp = input('Enter a Number: ');
inBetween10and100 = tmp >= 10 && tmp <= 100;
if(inBetween10and100 == true)
fprintf('The value %.2f is between 10 and 100\n',tmp);
else
fprintf('The value %.2f is NOT between 10 and 100\n',tmp);
end
end
0 comentarios
Ver también
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!