Created
January 22, 2014 14:39
-
-
Save banderson623/8559795 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Cricket | |
{ | |
static void Main(string[] args) | |
{ | |
bool condition1 = true; | |
bool condition2 = true; | |
bool condition3 = true; | |
bool condition4 = true; | |
bool condition5 = true; | |
if (condition1) | |
{ | |
if (condition2) | |
{ | |
if (condition3) | |
{ | |
if (condition4) | |
{ | |
if (condition5) | |
{ | |
Win(); | |
} | |
} | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment