switch case
switch () {
case this-value:
Code to execute if== this-value
break;
case that-value:
Code to execute if== that-value
break;
...
default:
Code to execute ifdoes not equal the value following any of the cases
break;
}
switch () {
case this-value:
Code to execute if== this-value
break;
case that-value:
Code to execute if== that-value
break;
...
default:
Code to execute ifdoes not equal the value following any of the cases
break;
}
© PC Template PC by PC 2008
Back to TOP
0 comments:
Post a Comment