Advertisement
bacco

Числа от 20 до 2n ; Powers of Two

Feb 19th, 2018
70
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 Купа
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.            
  10.             var n = int.Parse(Console.ReadLine());
  11.             int number = 1;
  12.             for (int i = 0; i <= n; i++)
  13.             {
  14.                 Console.WriteLine(number);
  15.                 number *= 2;
  16.             }
  17.         }
  18.     }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement