Advertisement
hentt30

Untitled

Oct 16th, 2019
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.25 KB | None | 0 0
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6.     if(a())
  7.     {
  8.         if(b())
  9.         {
  10.             if(c())
  11.             {
  12.                 ...
  13.             }
  14.             else
  15.             {
  16.                 ...
  17.             }
  18.         }
  19.         else
  20.         {
  21.             ...  
  22.         }
  23.     }
  24.     else
  25.     {
  26.         ...
  27.     }
  28.     return 0 ;
  29.  
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement