How do I end a program when a condition is met using only if-else-elseif statements?

조회 수: 10 (최근 30일)
I’m making a program where I need to have the program stop asking questions if an invalid input is entered by the user. How would I do this using only if-elseif-else statements, not using commands like return or break?
  댓글 수: 2
Rik
Rik 2019년 9월 9일
Why are you limiting yourself? Is this homework? Using keywords like return and break will make code much more readable and compact.
Sam Jenkins
Sam Jenkins 2019년 9월 9일
Yes, sorry if that’s against the rules of the board. I just don’t understand the general concepts of nesting if-else statements and can’t seem to make it work.

댓글을 달려면 로그인하십시오.

채택된 답변

Rik
Rik 2019년 9월 9일
편집: Rik 2019년 9월 9일
Something like this will work (edit to add nesting):
function out=MyFunction(in)
if in<1
if in==0.5
%do something
else
%do something different
end
elseif in==2
%do something else
else
%do nothing
end
%don't put code here
end
You could also use code at the beginning of your function to find out the type of code that should be run and then use that in a switch case structure.

추가 답변 (0개)

카테고리

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

제품


릴리스

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by