دستور switch تو در تو در زبان C
شما می توانید در داخل یک دستور switch از یک دستور switch دیگر استفاده کنید که اصطلاحا به آن switch تو در تو گفته می شود.
نحوه نوشتن دستور switch تو در تو
در زیر Syntax یک switch تو در تو را مشاهده می کنید:
1 2 3 4 5 6 7 8 9 10 11 12 | switch(ch1) { case 'A': printf("This A is part of outer switch" ); switch(ch2) { case 'A': printf("This A is part of inner switch" ); break; case 'B': /* case code */ } break; case 'B': /* case code */ } |
مثال
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | #include <stdio.h> int main () { /* local variable definition */ int a = 100; int b = 200; switch(a) { case 100: printf("This is part of outer switch\n", a ); switch(b) { case 200: printf("This is part of inner switch\n", a ); } } printf("Exact value of a is : %d\n", a ); printf("Exact value of b is : %d\n", b ); return 0; } |
زمانی که کد بالا توسط کامپایلر زبان C و اجرا شود، نتیجه زیر را تولید خواهد کرد:
1 2 3 4 | This is part of outer switch This is part of inner switch Exact value of a is : 100 Exact value of b is : 200 |
هیچ نظری ثبت نشده است