Skip to content

Instantly share code, notes, and snippets.

@tnngo2
Created April 6, 2012 09:15
Show Gist options
  • Save tnngo2/2318398 to your computer and use it in GitHub Desktop.
Save tnngo2/2318398 to your computer and use it in GitHub Desktop.
OR
int num = -5;
if (num < 0 || num > 10)
{
Console.WriteLine("Not between 1 and 10");
}
else
{
Console.WriteLine("Between 1 and 10");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment