Skip to content

Instantly share code, notes, and snippets.

@soheil-moonesi
Last active January 31, 2024 10:57
Show Gist options
  • Save soheil-moonesi/33fbd5ff9d3581d596912cbef3caf7eb to your computer and use it in GitHub Desktop.
Save soheil-moonesi/33fbd5ff9d3581d596912cbef3caf7eb to your computer and use it in GitHub Desktop.
for (int i = 0,j=10; i < 10 && j>5 ; i++ , j--)
{
if (j == 7)
{
continue;
Console.WriteLine("is it run ?");
}
Console.WriteLine($"{i} and {j}");
}
response:
0 and 10
1 and 9
2 and 8
4 and 6
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment