How can I use "OR" in this situation? I want it to show if x==2 or d~=0

3 visualizaciones (últimos 30 días)
if x==2
disp('Given value is a prime!')
elseif d~=0
disp('Given value is a prime!')
end

Respuesta aceptada

jean claude
jean claude el 5 de Oct. de 2017
Editada: jean claude el 5 de Oct. de 2017
if x==2 || d~=0
disp('Given value is a prime!')
end

Más respuestas (0)

Categorías

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

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by