Skip to content

Instantly share code, notes, and snippets.

@FirroC
Created June 20, 2025 11:12
Show Gist options
  • Save FirroC/d07dc46a50c3833168b849628cb3a17d to your computer and use it in GitHub Desktop.
Save FirroC/d07dc46a50c3833168b849628cb3a17d to your computer and use it in GitHub Desktop.
class Program
{
static void Main(string[] args)
{
int maxValue = 103;
int startValue = 5;
for (startValue = 5; startValue <= maxValue; startValue += 7)
{
Console.WriteLine(startValue);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment