Advertisement
desislava_topuzakova

04. Even Powers of 2

May 10th, 2020
778
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.50 KB | None | 0 0
  1. using System;
  2. using System.Globalization;
  3.  
  4. namespace Loops
  5. {
  6.     class Program
  7.     {
  8.         static void Main(string[] args)
  9.         {
  10.             int n = int.Parse(Console.ReadLine());
  11.             //за всички четни степени от 0 до n (0, 2, 4, 6, 8, 10 ...)
  12.             //печатаме 2 на тази степен
  13.             for (int power = 0; power <= n; power += 2)
  14.             {
  15.                 Console.WriteLine(Math.Pow(2, power));
  16.             }
  17.         }
  18.     }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement