SWich/case code
1 回表示 (過去 30 日間)
古いコメントを表示
1 件のコメント
Geoff Hayes
2021 年 4 月 19 日
編集済み: Geoff Hayes
2021 年 4 月 19 日
Jorge - since this is homework, please discuss what you have attempted so far. If you have a specific question, then please ask it so that we can get a better idea of where you might be stuck.
回答 (1 件)
Shivang Srivastava
2021 年 4 月 23 日
I would recommend you try to solve the question yourself before going through the solution. Here is the solution for your reference:
function [output] = switchcaseWeekdays(n)
switch n
case 1
output = "Sunday";
case 2
output = "Monday";
case 3
output = "Tuesday";
case 4
output = "Wednesday";
case 5
output = "Thursday";
case 6
output = "Friday";
case 7
output = "Saturday";
otherwise
output = "Not a valid input";
end
end
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Logical についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!