国产chinesehdxxxx野外,国产av无码专区亚洲av琪琪,播放男人添女人下边视频,成人国产精品一区二区免费看,chinese丰满人妻videos

D編程 nested switch statements

2021-09-01 11:25 更新

嵌套switch語(yǔ)句意味著,在switch語(yǔ)句中可以隨意嵌套任意的switch語(yǔ)句。

nested switch - 語(yǔ)法

嵌套switch語(yǔ)句的語(yǔ)法如下所示:-

switch(ch1) { 
   case 'A':  
      writefln("This A is part of outer switch" ); 
      switch(ch2) { 
         case 'A': 
            writefln("This A is part of inner switch" ); 
            break; 
         case 'B': /* case code */
      } 
      break; 
   case 'B': /* case code */
}

nested switch - 示例

import std.stdio;

int main () { 
   /* local variable definition */
   int a=100; 
   int b=200;  
   
   switch(a) {
      case 100: 
         writefln("This is part of outer switch", a ); 
         switch(b) { 
            case 200: 
               writefln("This is part of inner switch", a ); 
            default: 
               break; 
         } 
      default: 
      break; 
   } 
   writefln("Exact value of a is : %d", a ); 
   writefln("Exact value of b is : %d", b ); 
  
   return 0; 
}

編譯并執(zhí)行上述代碼時(shí),將生成以下結(jié)果-

This is part of outer switch 
This is part of inner switch 
Exact value of a is : 100 
Exact value of b is : 200 


以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)