フィルターのクリア

how can i go back to the fist choose again with out termination after finshing the first task?

1 回表示 (過去 30 日間)
mynumber = input('Enter a number:');
switch mynumber
case -1
disp('negative one');
case 0
disp('zero');
case 1
disp('positive one');
otherwise
disp('other value');
end
hello every one
I wrote some code which repeatedly do some task
eg like this above which is in mat lab docc.
when I select the first choice(1}
the program does the first statement only and stops.what i want is ,after compelitilng the first task it should asks me again if i want to choose the choices starting from choice 1
how can i do that?

採用された回答

David Sanchez
David Sanchez 2014 年 6 月 24 日
Use a while-loop:
mynumber = 0;
while (mynumber ~= 3) % condition to get out of the loop. Change to your needs
mynumber = input('Enter a number:');
switch mynumber
case -1
disp('negative one');
case 0
disp('zero');
case 1
disp('positive one');
otherwise
disp('other value');
end
end

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeOptimization についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by