Created
May 9, 2018 20:00
-
-
Save TheBuzzSaw/5347c4d278df0a12bdb72159c59d3033 to your computer and use it in GitHub Desktop.
440
This file contains hidden or 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
| 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