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
댓글 수: 0
채택된 답변
jean claude
2017년 10월 5일
편집: jean claude
2017년 10월 5일
if x==2 || d~=0
disp('Given value is a prime!')
end
댓글 수: 0
추가 답변(0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!