ForSwitchJump

프로그래밍 2012. 3. 26. 10:14


//0 a->b
//1 c->e
//2 c->d->b
//[for문의 break]와 [switch문의 case,default]의 위치조정으로 다양한 스타일 구현가능
int ForSwitchJump(int iSwitch)
{
 switch (iSwitch)
 {
 case 0:
  std::cout << "SectionA" << std::endl;
  for ( ; ; )
  {
   std::cout << "SectionB" << std::endl;
   return 0; default:
   std::cout << "SectionC" << std::endl;
   if (iSwitch % 2)
   {
    break;
   }
   std::cout << "SectionD" << std::endl;
  }
  std::cout << "SectionE" << std::endl;
 }
}

'프로그래밍' 카테고리의 다른 글

경고 : C4532  (0) 2012.06.20
[git] 작업의 취소  (0) 2012.05.10
std::tr1::tuple  (0) 2012.03.13
SVN 특정 리비전 롤백하기  (0) 2012.02.09
svn 계정 정보 초기화  (0) 2012.02.01