Advertisement
aggressiveviking

03.PowersOfTwo

Feb 26th, 2020
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.36 KB | None | 0 0
  1. using System;
  2.  
  3. namespace _03.PowersOfTwo
  4. {
  5.     class PowersOfTwo
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int n = int.Parse(Console.ReadLine());
  10.             int num = 1;
  11.  
  12.             for (int i = 0; i <= n; i++)
  13.             {
  14.                 Console.WriteLine(num);
  15.                 num = num * 2;
  16.             }
  17.         }
  18.     }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement