switch

switch


switch(x)
{
  case 0:
  {
    ....;
    break;
  }
  default:
  {
    ....;
  }
}
评论已关闭。