fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5.  
  6. int x = 1;
  7. switch (x)
  8. {
  9. case 1 :
  10. if(1)
  11. {
  12. if(2)
  13. {
  14. if(3)
  15. {
  16. std::cout<<"i am here "<<std::endl;
  17. break;
  18. std::cout<<"i am here 2"<<std::endl;
  19. }
  20. std::cout<<"i am here 4"<<std::endl;
  21.  
  22. }
  23. std::cout<<"i am here 5"<<std::endl;
  24.  
  25. }
  26. std::cout<<"i am here 6"<<std::endl;
  27.  
  28. break;
  29. default :
  30. break;
  31. }
  32.  
  33. std::cout<<"i am here 3"<<std::endl;
  34.  
  35. return 0;
  36. }
Success #stdin #stdout 0.01s 5284KB
stdin
Standard input is empty
stdout
i am here 
i am here 3