I want to repeat my input command and the if-else statement. The input has to be positive and must include 0 and not include inf.

9 visualizaciones (últimos 30 días)
clear;
clc;
A =input('Enter the Code: ');
if A>=0 && A~=inf
B = A;
else
disp('Invalid Code');
while A<0 && A==inf
A =input('Enter the Code: ');
if A>=0 && A~=inf
B = A;
break;
else
disp('Invalid Code');
end
end
end

Respuesta aceptada

KALYAN ACHARJYA
KALYAN ACHARJYA el 22 de Feb. de 2021
Editada: KALYAN ACHARJYA el 22 de Feb. de 2021
cond=1;
while cond==1
A=input('Enter the Code: ');
if A>=0 && A~=inf
B=A
cond=0;
else
disp('Invalid Code');
end
end
Or
A=input('Enter the Code: ');
while A<0 || A==inf
disp('Invalid Code');
A=input('Enter the Code: ');
end
B=A;

Más respuestas (0)

Categorías

Más información sobre Logical en Help Center y File Exchange.

Productos


Versión

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by