Skip to content

Instantly share code, notes, and snippets.

@TheBuzzSaw
Created May 9, 2018 20:00
Show Gist options
  • Select an option

  • Save TheBuzzSaw/5347c4d278df0a12bdb72159c59d3033 to your computer and use it in GitHub Desktop.

Select an option

Save TheBuzzSaw/5347c4d278df0a12bdb72159c59d3033 to your computer and use it in GitHub Desktop.
440
using System;
namespace _440
{
class Program
{
static void Main(string[] args)
{
int n = 440;
for (int i = 0; i < 8; ++i)
{
Console.WriteLine(n << i);
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment