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

조회 수: 3 (최근 30일)
if x==2
disp('Given value is a prime!')
elseif d~=0
disp('Given value is a prime!')
end

채택된 답변

jean claude
jean claude 2017년 10월 5일
편집: jean claude 2017년 10월 5일
if x==2 || d~=0
disp('Given value is a prime!')
end

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Discrete Math에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by