W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
在 MATLAB 中嵌套 switch 語句是可能的,可以在 switch 一部分外嵌套 switch 語句序列。即使 case 常量的內(nèi)部和外部的 switch 含有共同的值,也不算沖突出現(xiàn)。
嵌套switch語句的語法如下:
switch(ch1) case 'A' fprintf('This A is part of outer switch'); switch(ch2) case 'A' fprintf('This A is part of inner switch' ); case 'B' fprintf('This B is part of inner switch' ); end case 'B' fprintf('This B is part of outer switch' ); end
在MATLAB中建立一個腳本文件,并輸入下面的代碼:
a = 100; b = 200; switch(a) case 100 fprintf('This is part of outer switch %d ', a ); switch(b) case 200 fprintf('This is part of inner switch %d ', b ); end end fprintf('Exact value of a is : %d ', a ); fprintf('Exact value of b is : %d ', b );
當(dāng)運行該文件時,它會顯示:
This is part of outer switch 100 This is part of inner switch 200 Exact value of a is : 100 Exact value of b is : 200
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: