-
-
Save JayBazuzi/cea91f55a8ff2d117ea537fa7914d9ef to your computer and use it in GitHub Desktop.
If structure
This file contains 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
string result = null; | |
if (result == null) | |
result = Win(); | |
if (result == null) | |
result = Advantage(); | |
if (result == null) | |
result = ScoreNormal(); | |
if (result == null) | |
result = ScorePerson1(); | |
if (result == null) | |
result = ScorePerson2(); | |
if (result == null) | |
result = ScoreTie(); | |
return result; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment