Info

Questa domanda è chiusa. Riaprila per modificarla o per rispondere.

why not it work between 1 and 10?

1 visualizzazione (ultimi 30 giorni)
bijay kumar
bijay kumar il 14 Ago 2018
Chiuso: MATLAB Answer Bot il 20 Ago 2021
clc
num = input('enter a number between 1 and 10:->');
if (num < 1 && num > 10)
disp('invalid number')
else
disp('valid number')
end
  4 Commenti
Dennis
Dennis il 14 Ago 2018
if num < 1 || num > 10
bijay kumar
bijay kumar il 14 Ago 2018
thank u Dennis.

Risposte (1)

Dennis
Dennis il 14 Ago 2018
I think it is unlikely, that one number is smaller than 1 and bigger than 10 at the same time.
num = input('enter a number between 1 and 10:->');
if num > 1 && num < 10
disp('valid number');
else
disp('invalid number')
end

Questa domanda è chiusa.

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by